mfd: fix ab3100 warning on x86_64
authorSamuel Ortiz <sameo@linux.intel.com>
Tue, 23 Jun 2009 08:48:36 +0000 (10:48 +0200)
committerSamuel Ortiz <sameo@linux.intel.com>
Thu, 17 Sep 2009 07:46:42 +0000 (09:46 +0200)
The file_operations write prototype should return a ssize_t.

Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
drivers/mfd/ab3100-core.c

index 13e7d7b..8ff10cb 100644 (file)
@@ -465,14 +465,14 @@ static int ab3100_get_set_reg_open_file(struct inode *inode, struct file *file)
        return 0;
 }
 
-static int ab3100_get_set_reg(struct file *file,
-                             const char __user *user_buf,
-                             size_t count, loff_t *ppos)
+static ssize_t ab3100_get_set_reg(struct file *file,
+                                 const char __user *user_buf,
+                                 size_t count, loff_t *ppos)
 {
        struct ab3100_get_set_reg_priv *priv = file->private_data;
        struct ab3100 *ab3100 = priv->ab3100;
        char buf[32];
-       int buf_size;
+       ssize_t buf_size;
        int regp;
        unsigned long user_reg;
        int err;