diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2007-02-05 16:41:03 -0800 | 
|---|---|---|
| committer | Greg Kroah-Hartman <gregkh@suse.de> | 2007-02-16 15:32:20 -0800 | 
| commit | fc8d91912694859d3e598839af2427ec1287741c (patch) | |
| tree | a8517e5fa733068aa0b37d3c40f07e31b944b9e9 /include/linux/usbdevice_fs.h | |
| parent | a7e555b6992d33e38c34aaa0e65f25bc544e28b1 (diff) | |
| download | olio-linux-3.10-fc8d91912694859d3e598839af2427ec1287741c.tar.xz olio-linux-3.10-fc8d91912694859d3e598839af2427ec1287741c.zip  | |
USB: use __u32 rather than u32 in userspace ioctls in usbdevice_fs.h
Use __u32 rather than u32 in userspace ioctl defines.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/usbdevice_fs.h')
| -rw-r--r-- | include/linux/usbdevice_fs.h | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/usbdevice_fs.h b/include/linux/usbdevice_fs.h index 617d8a1c59a..342dd5a7e8b 100644 --- a/include/linux/usbdevice_fs.h +++ b/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)  |