]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - drivers/watchdog/pcwd_pci.c
[WATCHDOG] pcwd: a couple of watchdogs escaped conversion
[linux-2.6-omap-h63xx.git] / drivers / watchdog / pcwd_pci.c
index a1d31d1f750f186d17147aa1a5d5060cbf0a9cfe..67d90810c6e95542c187089d92f584773b6179f1 100644 (file)
@@ -454,8 +454,8 @@ static ssize_t pcipcwd_write(struct file *file, const char __user *data,
        return len;
 }
 
-static int pcipcwd_ioctl(struct inode *inode, struct file *file,
-                         unsigned int cmd, unsigned long arg)
+static long pcipcwd_ioctl(struct file *file, unsigned int cmd,
+                                               unsigned long arg)
 {
        void __user *argp = (void __user *)arg;
        int __user *p = argp;
@@ -477,9 +477,7 @@ static int pcipcwd_ioctl(struct inode *inode, struct file *file,
                case WDIOC_GETSTATUS:
                {
                        int status;
-
                        pcipcwd_get_status(&status);
-
                        return put_user(status, p);
                }
 
@@ -643,7 +641,7 @@ static const struct file_operations pcipcwd_fops = {
        .owner =        THIS_MODULE,
        .llseek =       no_llseek,
        .write =        pcipcwd_write,
-       .ioctl =        pcipcwd_ioctl,
+       .unlocked_ioctl = pcipcwd_ioctl,
        .open =         pcipcwd_open,
        .release =      pcipcwd_release,
 };