From: Jiri Kosina Date: Thu, 25 Oct 2007 09:38:21 +0000 (+0200) Subject: HID: hiddev - fix compiler warning X-Git-Tag: v2.6.24-rc2~54^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d624284b06f869dad87a70a8d0cad72fbf7527b9;p=platform%2Fkernel%2Flinux-3.10.git HID: hiddev - fix compiler warning drivers/hid/usbhid/hiddev.c: In function 'hiddev_compat_ioctl': drivers/hid/usbhid/hiddev.c:746: warning: passing argument 4 of 'hiddev_ioctl' makes integer from pointer without a cast Add cast to hiddev_compat_ioctl() Signed-off-by: Jiri Kosina --- diff --git a/drivers/hid/usbhid/hiddev.c b/drivers/hid/usbhid/hiddev.c index 9837adc..5fc4019 100644 --- a/drivers/hid/usbhid/hiddev.c +++ b/drivers/hid/usbhid/hiddev.c @@ -743,7 +743,7 @@ inval: static long hiddev_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg) { struct inode *inode = file->f_path.dentry->d_inode; - return hiddev_ioctl(inode, file, cmd, compat_ptr(arg)); + return hiddev_ioctl(inode, file, cmd, (unsigned long)compat_ptr(arg)); } #endif