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/alim7101_wdt.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/alim7101_wdt.c')
-rw-r--r-- | drivers/watchdog/alim7101_wdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/watchdog/alim7101_wdt.c b/drivers/watchdog/alim7101_wdt.c index 049c9122e40d..a045ef869439 100644 --- a/drivers/watchdog/alim7101_wdt.c +++ b/drivers/watchdog/alim7101_wdt.c | |||
@@ -125,7 +125,7 @@ static void wdt_timer_ping(unsigned long data) | |||
125 | 125 | ||
126 | static void wdt_change(int writeval) | 126 | static void wdt_change(int writeval) |
127 | { | 127 | { |
128 | char tmp; | 128 | char tmp; |
129 | 129 | ||
130 | pci_read_config_byte(alim7101_pmu, ALI_7101_WDT, &tmp); | 130 | pci_read_config_byte(alim7101_pmu, ALI_7101_WDT, &tmp); |
131 | if (writeval == WDT_ENABLE) { | 131 | if (writeval == WDT_ENABLE) { |
@@ -198,7 +198,7 @@ static ssize_t fop_write(struct file *file, const char __user *buf, | |||
198 | /* now scan */ | 198 | /* now scan */ |
199 | for (ofs = 0; ofs != count; ofs++) { | 199 | for (ofs = 0; ofs != count; ofs++) { |
200 | char c; | 200 | char c; |
201 | if (get_user(c, buf+ofs)) | 201 | if (get_user(c, buf + ofs)) |
202 | return -EFAULT; | 202 | return -EFAULT; |
203 | if (c == 'V') | 203 | if (c == 'V') |
204 | wdt_expect_close = 42; | 204 | wdt_expect_close = 42; |