diff options
author | Wim Van Sebroeck <wim@iguana.be> | 2008-08-06 16:19:41 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2008-08-06 16:19:41 -0400 |
commit | 7944d3a5a70ee5c1904ed1e8b1d71ff0af2854d9 (patch) | |
tree | fe6ec1a557a4b27712266d9d86f791c69e8e2596 /drivers/watchdog/ibmasr.c | |
parent | 12b7a1523eda9cd72362fdda928ddb995ecdc06d (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/ibmasr.c')
-rw-r--r-- | drivers/watchdog/ibmasr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/ibmasr.c b/drivers/watchdog/ibmasr.c index 0b549f3ff915..b82405cfb4cd 100644 --- a/drivers/watchdog/ibmasr.c +++ b/drivers/watchdog/ibmasr.c | |||
@@ -275,7 +275,7 @@ static long asr_ioctl(struct file *file, unsigned int cmd, unsigned long arg) | |||
275 | static const struct watchdog_info ident = { | 275 | static const struct watchdog_info ident = { |
276 | .options = WDIOF_KEEPALIVEPING | | 276 | .options = WDIOF_KEEPALIVEPING | |
277 | WDIOF_MAGICCLOSE, | 277 | WDIOF_MAGICCLOSE, |
278 | .identity = "IBM ASR" | 278 | .identity = "IBM ASR", |
279 | }; | 279 | }; |
280 | void __user *argp = (void __user *)arg; | 280 | void __user *argp = (void __user *)arg; |
281 | int __user *p = argp; | 281 | int __user *p = argp; |
@@ -345,7 +345,7 @@ static int asr_release(struct inode *inode, struct file *file) | |||
345 | 345 | ||
346 | static const struct file_operations asr_fops = { | 346 | static const struct file_operations asr_fops = { |
347 | .owner = THIS_MODULE, | 347 | .owner = THIS_MODULE, |
348 | .llseek = no_llseek, | 348 | .llseek = no_llseek, |
349 | .write = asr_write, | 349 | .write = asr_write, |
350 | .unlocked_ioctl = asr_ioctl, | 350 | .unlocked_ioctl = asr_ioctl, |
351 | .open = asr_open, | 351 | .open = asr_open, |