diff options
Diffstat (limited to 'drivers/watchdog/rdc321x_wdt.c')
| -rw-r--r-- | drivers/watchdog/rdc321x_wdt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/watchdog/rdc321x_wdt.c b/drivers/watchdog/rdc321x_wdt.c index 9108efa73e7d..bf92802f2bbe 100644 --- a/drivers/watchdog/rdc321x_wdt.c +++ b/drivers/watchdog/rdc321x_wdt.c | |||
| @@ -144,8 +144,8 @@ static int rdc321x_wdt_release(struct inode *inode, struct file *file) | |||
| 144 | return 0; | 144 | return 0; |
| 145 | } | 145 | } |
| 146 | 146 | ||
| 147 | static int rdc321x_wdt_ioctl(struct inode *inode, struct file *file, | 147 | static long rdc321x_wdt_ioctl(struct file *file, unsigned int cmd, |
| 148 | unsigned int cmd, unsigned long arg) | 148 | unsigned long arg) |
| 149 | { | 149 | { |
| 150 | void __user *argp = (void __user *)arg; | 150 | void __user *argp = (void __user *)arg; |
| 151 | unsigned int value; | 151 | unsigned int value; |
| @@ -204,7 +204,7 @@ static ssize_t rdc321x_wdt_write(struct file *file, const char __user *buf, | |||
| 204 | static const struct file_operations rdc321x_wdt_fops = { | 204 | static const struct file_operations rdc321x_wdt_fops = { |
| 205 | .owner = THIS_MODULE, | 205 | .owner = THIS_MODULE, |
| 206 | .llseek = no_llseek, | 206 | .llseek = no_llseek, |
| 207 | .ioctl = rdc321x_wdt_ioctl, | 207 | .unlocked_ioctl = rdc321x_wdt_ioctl, |
| 208 | .open = rdc321x_wdt_open, | 208 | .open = rdc321x_wdt_open, |
| 209 | .write = rdc321x_wdt_write, | 209 | .write = rdc321x_wdt_write, |
| 210 | .release = rdc321x_wdt_release, | 210 | .release = rdc321x_wdt_release, |
