X-Git-Url: http://drtracing.org/?a=blobdiff_plain;f=drivers%2Fi2c%2Fi2c-dev.c;h=e96d98696782d230bb7b7070b7be1d67c75d289c;hb=77e38bffe0fcaa48f0be68eaa1de4a59d1fd93ad;hp=d34c14c81c291e9beabf7100530307b8a42e8914;hpb=96916090f488986a4ebb8e9ffa6a3b50881d5ccd;p=deliverable%2Flinux.git diff --git a/drivers/i2c/i2c-dev.c b/drivers/i2c/i2c-dev.c index d34c14c81c29..e96d98696782 100644 --- a/drivers/i2c/i2c-dev.c +++ b/drivers/i2c/i2c-dev.c @@ -366,8 +366,7 @@ static noinline int i2cdev_ioctl_smbus(struct i2c_client *client, return res; } -static int i2cdev_ioctl(struct inode *inode, struct file *file, - unsigned int cmd, unsigned long arg) +static long i2cdev_ioctl(struct file *file, unsigned int cmd, unsigned long arg) { struct i2c_client *client = (struct i2c_client *)file->private_data; unsigned long funcs; @@ -487,7 +486,7 @@ static const struct file_operations i2cdev_fops = { .llseek = no_llseek, .read = i2cdev_read, .write = i2cdev_write, - .ioctl = i2cdev_ioctl, + .unlocked_ioctl = i2cdev_ioctl, .open = i2cdev_open, .release = i2cdev_release, };