aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/watchdog/mtx-1_wdt.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/mtx-1_wdt.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/mtx-1_wdt.c')
-rw-r--r--drivers/watchdog/mtx-1_wdt.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/watchdog/mtx-1_wdt.c b/drivers/watchdog/mtx-1_wdt.c
index e0b8cdfa5e70..f820b82da7c3 100644
--- a/drivers/watchdog/mtx-1_wdt.c
+++ b/drivers/watchdog/mtx-1_wdt.c
@@ -148,17 +148,14 @@ static long mtx1_wdt_ioctl(struct file *file, unsigned int cmd,
148 }; 148 };
149 149
150 switch (cmd) { 150 switch (cmd) {
151 case WDIOC_KEEPALIVE: 151 case WDIOC_GETSUPPORT:
152 mtx1_wdt_reset(); 152 if (copy_to_user(argp, &ident, sizeof(ident)))
153 return -EFAULT;
153 break; 154 break;
154 case WDIOC_GETSTATUS: 155 case WDIOC_GETSTATUS:
155 case WDIOC_GETBOOTSTATUS: 156 case WDIOC_GETBOOTSTATUS:
156 put_user(0, p); 157 put_user(0, p);
157 break; 158 break;
158 case WDIOC_GETSUPPORT:
159 if (copy_to_user(argp, &ident, sizeof(ident)))
160 return -EFAULT;
161 break;
162 case WDIOC_SETOPTIONS: 159 case WDIOC_SETOPTIONS:
163 if (get_user(value, p)) 160 if (get_user(value, p))
164 return -EFAULT; 161 return -EFAULT;
@@ -169,6 +166,9 @@ static long mtx1_wdt_ioctl(struct file *file, unsigned int cmd,
169 else 166 else
170 return -EINVAL; 167 return -EINVAL;
171 return 0; 168 return 0;
169 case WDIOC_KEEPALIVE:
170 mtx1_wdt_reset();
171 break;
172 default: 172 default:
173 return -ENOTTY; 173 return -ENOTTY;
174 } 174 }