diff options
Diffstat (limited to 'drivers/watchdog/alim7101_wdt.c')
-rw-r--r-- | drivers/watchdog/alim7101_wdt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/watchdog/alim7101_wdt.c b/drivers/watchdog/alim7101_wdt.c index 726e75d9db7a..049c9122e40d 100644 --- a/drivers/watchdog/alim7101_wdt.c +++ b/drivers/watchdog/alim7101_wdt.c | |||
@@ -251,9 +251,6 @@ static long fop_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | |||
251 | case WDIOC_GETSTATUS: | 251 | case WDIOC_GETSTATUS: |
252 | case WDIOC_GETBOOTSTATUS: | 252 | case WDIOC_GETBOOTSTATUS: |
253 | return put_user(0, p); | 253 | return put_user(0, p); |
254 | case WDIOC_KEEPALIVE: | ||
255 | wdt_keepalive(); | ||
256 | return 0; | ||
257 | case WDIOC_SETOPTIONS: | 254 | case WDIOC_SETOPTIONS: |
258 | { | 255 | { |
259 | int new_options, retval = -EINVAL; | 256 | int new_options, retval = -EINVAL; |
@@ -270,6 +267,9 @@ static long fop_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | |||
270 | } | 267 | } |
271 | return retval; | 268 | return retval; |
272 | } | 269 | } |
270 | case WDIOC_KEEPALIVE: | ||
271 | wdt_keepalive(); | ||
272 | return 0; | ||
273 | case WDIOC_SETTIMEOUT: | 273 | case WDIOC_SETTIMEOUT: |
274 | { | 274 | { |
275 | int new_timeout; | 275 | int new_timeout; |