aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog/softdog.c
diff options
context:
space:
mode:
authorWim Van Sebroeck <wim@iguana.be>2008-07-18 07:41:17 -0400
committerWim Van Sebroeck <wim@iguana.be>2008-08-06 09:21:09 -0400
commit0c06090c9472db0525cb6fe229c3bea33bbbbb3c (patch)
treeb01c21f6ef5649b6f0071dee4a55cb3ba236a7b8 /drivers/watchdog/softdog.c
parent5eb82498e3a6da8a979c48945e3c1a85c10ccc25 (diff)
[WATCHDOG] Coding style - Indentation - part 2
This brings the watchdog drivers into line with coding style. This patch takes cares of the indentation as described in chapter 1. Main changes: * Re-structure the ioctl switch call for all drivers as follows: switch (cmd) { case WDIOC_GETSUPPORT: case WDIOC_GETSTATUS: case WDIOC_GETBOOTSTATUS: case WDIOC_GETTEMP: case WDIOC_SETOPTIONS: case WDIOC_KEEPALIVE: case WDIOC_SETTIMEOUT: case WDIOC_GETTIMEOUT: case WDIOC_GETTIMELEFT: default: } This to make the migration from the drivers to the uniform watchdog device driver easier in the future. Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/softdog.c')
-rw-r--r--drivers/watchdog/softdog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/softdog.c b/drivers/watchdog/softdog.c
index bb3c75eed9df..c650464c5c63 100644
--- a/drivers/watchdog/softdog.c
+++ b/drivers/watchdog/softdog.c
@@ -206,8 +206,6 @@ static long softdog_ioctl(struct file *file, unsigned int cmd,
206 .identity = "Software Watchdog", 206 .identity = "Software Watchdog",
207 }; 207 };
208 switch (cmd) { 208 switch (cmd) {
209 default:
210 return -ENOTTY;
211 case WDIOC_GETSUPPORT: 209 case WDIOC_GETSUPPORT:
212 return copy_to_user(argp, &ident, sizeof(ident)) ? -EFAULT : 0; 210 return copy_to_user(argp, &ident, sizeof(ident)) ? -EFAULT : 0;
213 case WDIOC_GETSTATUS: 211 case WDIOC_GETSTATUS:
@@ -225,6 +223,8 @@ static long softdog_ioctl(struct file *file, unsigned int cmd,
225 /* Fall */ 223 /* Fall */
226 case WDIOC_GETTIMEOUT: 224 case WDIOC_GETTIMEOUT:
227 return put_user(soft_margin, p); 225 return put_user(soft_margin, p);
226 default:
227 return -ENOTTY;
228 } 228 }
229} 229}
230 230