diff options
author | Muhammad Falak R Wani <falakreyaz@gmail.com> | 2016-05-06 18:29:41 +0530 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2016-05-14 18:25:56 +0200 |
commit | 12fe36e2ca0e474a2d7b48ab018d16977f9745a4 (patch) | |
tree | b94381908d405cdf6f695b4e39e31c17bb8c5f2c /drivers | |
parent | d904ac34bdbcf62a50c745cfe991681ae3948e4e (diff) | |
download | talos-op-linux-12fe36e2ca0e474a2d7b48ab018d16977f9745a4.tar.gz talos-op-linux-12fe36e2ca0e474a2d7b48ab018d16977f9745a4.zip |
watchdog: shwdt: Use setup_timer()
The function setup_timer combines the initialization of a timer with
the initialization of the timer's function and data fields.
The multiline code for timer initialization is now replaced
with function setup_timer.
Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/watchdog/shwdt.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/watchdog/shwdt.c b/drivers/watchdog/shwdt.c index f90812170657..517a733175ef 100644 --- a/drivers/watchdog/shwdt.c +++ b/drivers/watchdog/shwdt.c @@ -275,9 +275,7 @@ static int sh_wdt_probe(struct platform_device *pdev) return rc; } - init_timer(&wdt->timer); - wdt->timer.function = sh_wdt_ping; - wdt->timer.data = (unsigned long)wdt; + setup_timer(&wdt->timer, sh_wdt_ping, (unsigned long)wdt); wdt->timer.expires = next_ping_period(clock_division_ratio); dev_info(&pdev->dev, "initialized.\n"); |