aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/watchdog
diff options
context:
space:
mode:
authorJason Yan <yanaijie@huawei.com>2020-04-28 14:33:33 +0800
committerWim Van Sebroeck <wim@linux-watchdog.org>2020-05-25 08:55:46 +0200
commit5e31896a33c5ad5ad5c533e6bdff6510d136b1ef (patch)
tree2e8e2ef6ff340dadbfc43bb139672edb8efc3913 /drivers/watchdog
parentwatchdog: Add new arm_smc_wdt watchdog driver (diff)
downloadwireguard-linux-5e31896a33c5ad5ad5c533e6bdff6510d136b1ef.tar.xz
wireguard-linux-5e31896a33c5ad5ad5c533e6bdff6510d136b1ef.zip
watchdog: riowd: remove unneeded semicolon
Fix the following coccicheck warning: drivers/watchdog/riowd.c:144:2-3: Unneeded semicolon Signed-off-by: Jason Yan <yanaijie@huawei.com> Reviewed-by: Guenter Roeck <linux@roeck-us.net> Link: https://lore.kernel.org/r/20200428063333.2743-1-yanaijie@huawei.com Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r--drivers/watchdog/riowd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/riowd.c b/drivers/watchdog/riowd.c
index dc3c06a92f93..1b9a6dc8f982 100644
--- a/drivers/watchdog/riowd.c
+++ b/drivers/watchdog/riowd.c
@@ -141,7 +141,7 @@ static long riowd_ioctl(struct file *filp, unsigned int cmd, unsigned long arg)
default:
return -EINVAL;
- };
+ }
return 0;
}