diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-08-08 12:33:47 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-08-08 14:18:18 -0400 |
commit | 097d9eb537ff4d88b74c3fe67392e27c478ca3c5 (patch) | |
tree | 9034d676d9096857a380aab9d99e3e88fccb6bfe /drivers/watchdog/davinci_wdt.c | |
parent | c41107c2d4fd31924533f4dbc4c3428acc2b5894 (diff) | |
parent | aeee90dfa01844168cd7f8051d0a0f969c573067 (diff) |
Merge Linus' latest into master
Conflicts:
drivers/watchdog/at91rm9200_wdt.c
drivers/watchdog/davinci_wdt.c
drivers/watchdog/ep93xx_wdt.c
drivers/watchdog/ixp2000_wdt.c
drivers/watchdog/ixp4xx_wdt.c
drivers/watchdog/ks8695_wdt.c
drivers/watchdog/omap_wdt.c
drivers/watchdog/pnx4008_wdt.c
drivers/watchdog/sa1100_wdt.c
drivers/watchdog/wdt285.c
Diffstat (limited to 'drivers/watchdog/davinci_wdt.c')
-rw-r--r-- | drivers/watchdog/davinci_wdt.c | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/drivers/watchdog/davinci_wdt.c b/drivers/watchdog/davinci_wdt.c index 003dffe5cb19..2e1360286732 100644 --- a/drivers/watchdog/davinci_wdt.c +++ b/drivers/watchdog/davinci_wdt.c | |||
@@ -22,10 +22,9 @@ | |||
22 | #include <linux/bitops.h> | 22 | #include <linux/bitops.h> |
23 | #include <linux/platform_device.h> | 23 | #include <linux/platform_device.h> |
24 | #include <linux/spinlock.h> | 24 | #include <linux/spinlock.h> |
25 | 25 | #include <linux/uaccess.h> | |
26 | #include <linux/io.h> | ||
26 | #include <mach/hardware.h> | 27 | #include <mach/hardware.h> |
27 | #include <asm/uaccess.h> | ||
28 | #include <asm/io.h> | ||
29 | 28 | ||
30 | #define MODULE_NAME "DAVINCI-WDT: " | 29 | #define MODULE_NAME "DAVINCI-WDT: " |
31 | 30 | ||
@@ -143,9 +142,8 @@ static struct watchdog_info ident = { | |||
143 | .identity = "DaVinci Watchdog", | 142 | .identity = "DaVinci Watchdog", |
144 | }; | 143 | }; |
145 | 144 | ||
146 | static int | 145 | static long davinci_wdt_ioctl(struct file *file, |
147 | davinci_wdt_ioctl(struct inode *inode, struct file *file, unsigned int cmd, | 146 | unsigned int cmd, unsigned long arg) |
148 | unsigned long arg) | ||
149 | { | 147 | { |
150 | int ret = -ENOTTY; | 148 | int ret = -ENOTTY; |
151 | 149 | ||
@@ -160,14 +158,14 @@ davinci_wdt_ioctl(struct inode *inode, struct file *file, unsigned int cmd, | |||
160 | ret = put_user(0, (int *)arg); | 158 | ret = put_user(0, (int *)arg); |
161 | break; | 159 | break; |
162 | 160 | ||
163 | case WDIOC_GETTIMEOUT: | ||
164 | ret = put_user(heartbeat, (int *)arg); | ||
165 | break; | ||
166 | |||
167 | case WDIOC_KEEPALIVE: | 161 | case WDIOC_KEEPALIVE: |
168 | wdt_service(); | 162 | wdt_service(); |
169 | ret = 0; | 163 | ret = 0; |
170 | break; | 164 | break; |
165 | |||
166 | case WDIOC_GETTIMEOUT: | ||
167 | ret = put_user(heartbeat, (int *)arg); | ||
168 | break; | ||
171 | } | 169 | } |
172 | return ret; | 170 | return ret; |
173 | } | 171 | } |
@@ -184,7 +182,7 @@ static const struct file_operations davinci_wdt_fops = { | |||
184 | .owner = THIS_MODULE, | 182 | .owner = THIS_MODULE, |
185 | .llseek = no_llseek, | 183 | .llseek = no_llseek, |
186 | .write = davinci_wdt_write, | 184 | .write = davinci_wdt_write, |
187 | .ioctl = davinci_wdt_ioctl, | 185 | .unlocked_ioctl = davinci_wdt_ioctl, |
188 | .open = davinci_wdt_open, | 186 | .open = davinci_wdt_open, |
189 | .release = davinci_wdt_release, | 187 | .release = davinci_wdt_release, |
190 | }; | 188 | }; |