diff options
author | Joe Perches <joe@perches.com> | 2009-06-28 09:26:57 -0700 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2009-07-09 18:29:06 +0000 |
commit | b86a6c6c7b0bfc26b3e8d4f48e16ee0b13716385 (patch) | |
tree | 22ab2f43b82dc5142eb7812d30f3cd67bc0aa628 /drivers/watchdog | |
parent | 34f25476ace556263784ea2f8173e22b25557a13 (diff) |
[WATCHDOG] drivers/watchdog/bcm47xx_wdt.c: Remove unnecessary semicolons
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog')
-rw-r--r-- | drivers/watchdog/bcm47xx_wdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/bcm47xx_wdt.c b/drivers/watchdog/bcm47xx_wdt.c index 5c7011cda6a6..751c003864ad 100644 --- a/drivers/watchdog/bcm47xx_wdt.c +++ b/drivers/watchdog/bcm47xx_wdt.c @@ -161,7 +161,7 @@ static long bcm47xx_wdt_ioctl(struct file *file, { void __user *argp = (void __user *)arg; int __user *p = argp; - int new_value, retval = -EINVAL;; + int new_value, retval = -EINVAL; switch (cmd) { case WDIOC_GETSUPPORT: |