The patch titled use __u32 rather than u32 in userspace ioctls in usbdevice_fs.h has been added to the -mm tree. Its filename is use-__u32-rather-than-u32-in-userspace-ioctls-in-usbdevice_fsh.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: use __u32 rather than u32 in userspace ioctls in usbdevice_fs.h From: Mike Frysinger <vapier@xxxxxxxxxx> Use __u32 rather than u32 in userspace ioctl defines. Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- include/linux/usbdevice_fs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff -puN include/linux/usbdevice_fs.h~use-__u32-rather-than-u32-in-userspace-ioctls-in-usbdevice_fsh include/linux/usbdevice_fs.h --- a/include/linux/usbdevice_fs.h~use-__u32-rather-than-u32-in-userspace-ioctls-in-usbdevice_fsh +++ a/include/linux/usbdevice_fs.h @@ -159,9 +159,9 @@ struct usbdevfs_ioctl32 { #define USBDEVFS_SUBMITURB32 _IOR('U', 10, struct usbdevfs_urb32) #define USBDEVFS_DISCARDURB _IO('U', 11) #define USBDEVFS_REAPURB _IOW('U', 12, void *) -#define USBDEVFS_REAPURB32 _IOW('U', 12, u32) +#define USBDEVFS_REAPURB32 _IOW('U', 12, __u32) #define USBDEVFS_REAPURBNDELAY _IOW('U', 13, void *) -#define USBDEVFS_REAPURBNDELAY32 _IOW('U', 13, u32) +#define USBDEVFS_REAPURBNDELAY32 _IOW('U', 13, __u32) #define USBDEVFS_DISCSIGNAL _IOR('U', 14, struct usbdevfs_disconnectsignal) #define USBDEVFS_CLAIMINTERFACE _IOR('U', 15, unsigned int) #define USBDEVFS_RELEASEINTERFACE _IOR('U', 16, unsigned int) _ Patches currently in -mm which might be from vapier@xxxxxxxxxx are origin.patch use-__u8-__u32-in-userspace-ioctl-defines-for-i2o.patch use-__u8-rather-than-u8-in-userspace-size-defines-in-hdregh.patch search-a-little-harder-for-mkimage.patch use-__u32-rather-than-u32-in-userspace-ioctls-in-usbdevice_fsh.patch some-rtc-documentation-updates.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html