aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog/sbc60xxwdt.c
diff options
context:
space:
mode:
authorWim Van Sebroeck <wim@iguana.be>2008-08-06 16:19:41 -0400
committerWim Van Sebroeck <wim@iguana.be>2008-08-06 16:19:41 -0400
commit7944d3a5a70ee5c1904ed1e8b1d71ff0af2854d9 (patch)
treefe6ec1a557a4b27712266d9d86f791c69e8e2596 /drivers/watchdog/sbc60xxwdt.c
parent12b7a1523eda9cd72362fdda928ddb995ecdc06d (diff)
[WATCHDOG] more coding style clean-up's
More coding style clean-up's. Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Diffstat (limited to 'drivers/watchdog/sbc60xxwdt.c')
-rw-r--r--drivers/watchdog/sbc60xxwdt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/sbc60xxwdt.c b/drivers/watchdog/sbc60xxwdt.c
index e801cd46c647..3266daaaecf8 100644
--- a/drivers/watchdog/sbc60xxwdt.c
+++ b/drivers/watchdog/sbc60xxwdt.c
@@ -183,7 +183,7 @@ static ssize_t fop_write(struct file *file, const char __user *buf,
183 magic character */ 183 magic character */
184 for (ofs = 0; ofs != count; ofs++) { 184 for (ofs = 0; ofs != count; ofs++) {
185 char c; 185 char c;
186 if (get_user(c, buf+ofs)) 186 if (get_user(c, buf + ofs))
187 return -EFAULT; 187 return -EFAULT;
188 if (c == 'V') 188 if (c == 'V')
189 wdt_expect_close = 42; 189 wdt_expect_close = 42;
@@ -238,7 +238,7 @@ static long fop_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
238 238
239 switch (cmd) { 239 switch (cmd) {
240 case WDIOC_GETSUPPORT: 240 case WDIOC_GETSUPPORT:
241 return copy_to_user(argp, &ident, sizeof(ident))? -EFAULT : 0; 241 return copy_to_user(argp, &ident, sizeof(ident)) ? -EFAULT : 0;
242 case WDIOC_GETSTATUS: 242 case WDIOC_GETSTATUS:
243 case WDIOC_GETBOOTSTATUS: 243 case WDIOC_GETBOOTSTATUS:
244 return put_user(0, p); 244 return put_user(0, p);