From 15a2ebbc38bc7e7a5fd3920962aab2de58ca8461 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Tue, 10 Jun 2014 09:05:51 +0000 Subject: atheros: various braces fixes Fix braces location, remove unnecessary empty lines before or after code block, remove useless braces. All cases are detected by checkpatch. Signed-off-by: Sergey Ryazanov SVN-Revision: 41087 --- target/linux/atheros/patches-3.10/130-watchdog.patch | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) (limited to 'target/linux/atheros/patches-3.10/130-watchdog.patch') diff --git a/target/linux/atheros/patches-3.10/130-watchdog.patch b/target/linux/atheros/patches-3.10/130-watchdog.patch index 506b5f9..97b79b9 100644 --- a/target/linux/atheros/patches-3.10/130-watchdog.patch +++ b/target/linux/atheros/patches-3.10/130-watchdog.patch @@ -1,6 +1,6 @@ --- /dev/null +++ b/drivers/watchdog/ar2315-wtd.c -@@ -0,0 +1,200 @@ +@@ -0,0 +1,197 @@ +/* + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by @@ -82,8 +82,7 @@ +static irqreturn_t +ar2315_wdt_interrupt(int irq, void *dev_id) +{ -+ if(started) -+ { ++ if (started) { + printk(KERN_CRIT "watchdog expired, rebooting system\n"); + emergency_restart(); + } else { @@ -105,8 +104,7 @@ + int new_wdt_timeout; + int ret = -ENOIOCTLCMD; + -+ switch(cmd) -+ { ++ switch (cmd) { + case WDIOC_GETSUPPORT: + ret = copy_to_user((struct watchdog_info __user *)arg, &ident, sizeof(ident)) ? -EFAULT : 0; + break; @@ -153,8 +151,7 @@ + + ar2315_wdt_enable(); + ret = request_irq(AR531X_MISC_IRQ_WATCHDOG, ar2315_wdt_interrupt, IRQF_DISABLED, "ar2315_wdt", NULL); -+ if(ret) -+ { ++ if (ret) { + printk(KERN_ERR "ar2315wdt: failed to register inetrrupt\n"); + goto out; + } -- cgit v1.1