diff options
author | devendra.aaru <devendra.aaru@gmail.com> | 2012-06-26 05:18:26 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2012-12-19 16:24:41 -0500 |
commit | e09d9c3e9f85b8190ca1e495890f4cf5ee30baf6 (patch) | |
tree | 6070112df3a8aac59352f0d0f0c968b83a2e8a9a /drivers | |
parent | e16cfb9d38541bf1591c2e0ca64a562074e25f72 (diff) |
watchdog: cpu5wdt.c: add missing del_timer call
We do a setup_timer at init stage of the module, but we didn't
de-activate the time using del_timer.
Signed-off-by: devendra.aaru <devendra.aaru@gmail.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/watchdog/cpu5wdt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/cpu5wdt.c b/drivers/watchdog/cpu5wdt.c index cd87758abac3..f270bb7bc456 100644 --- a/drivers/watchdog/cpu5wdt.c +++ b/drivers/watchdog/cpu5wdt.c | |||
@@ -266,6 +266,7 @@ static void cpu5wdt_exit(void) | |||
266 | if (cpu5wdt_device.queue) { | 266 | if (cpu5wdt_device.queue) { |
267 | cpu5wdt_device.queue = 0; | 267 | cpu5wdt_device.queue = 0; |
268 | wait_for_completion(&cpu5wdt_device.stop); | 268 | wait_for_completion(&cpu5wdt_device.stop); |
269 | del_timer(&cpu5wdt_device.timer); | ||
269 | } | 270 | } |
270 | 271 | ||
271 | misc_deregister(&cpu5wdt_misc); | 272 | misc_deregister(&cpu5wdt_misc); |