the trivial attached patch fixes ioctl defines in usbdevice_fs.h that are exported to userspace to use __u32 rather than u32 -mike
Attachment:
pgpw3V4DInw24.pgp
Description: PGP signature
Use __u32 rather than u32 in userspace ioctl defines. Signed-off-by: Mike Frysinger <[email protected]> --- 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)
- Follow-Ups:
- Prev by Date: Re: Forcedeth issues, loss of connectivity. ASUS M2N32-SLI-D w/ AMD64
- Next by Date: Re: [PATCH] libata: add a dummy set_mode() in pata_pcmcia
- Previous by thread: [patch] use __u8 rather than u8 in userspace SIZE defines in hdreg.h
- Next by thread: Re: [patch] use __u32 rather than u32 in userspace ioctls in usbdevice_fs.h
- Index(es):