mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2026-06-25 11:43:20 +02:00
USB: iowarrior: fix info ioctl on big-endian hosts
commitdd5ca753faupstream. Drop erroneous le16_to_cpu when returning the USB device speed which is already in host byte order. Found using sparse: warning: cast to restricted __le16 Fixes:946b960d13("USB: add driver for iowarrior devices.") Signed-off-by: Johan Hovold <johan@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
This commit is contained in:
parent
8e88603e7b
commit
f952822143
|
|
@ -560,7 +560,7 @@ static long iowarrior_ioctl(struct file *file, unsigned int cmd,
|
|||
info.revision = le16_to_cpu(dev->udev->descriptor.bcdDevice);
|
||||
|
||||
/* 0==UNKNOWN, 1==LOW(usb1.1) ,2=FULL(usb1.1), 3=HIGH(usb2.0) */
|
||||
info.speed = le16_to_cpu(dev->udev->speed);
|
||||
info.speed = dev->udev->speed;
|
||||
info.if_num = dev->interface->cur_altsetting->desc.bInterfaceNumber;
|
||||
info.report_size = dev->report_size;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user