This is a note to let you know that I've just added the patch titled USB: adutux: fix big-endian device-type reporting to the 3.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: usb-adutux-fix-big-endian-device-type-reporting.patch and it can be found in the queue-3.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 735143e24807a8202d2fde8999eab1c3b761949d Mon Sep 17 00:00:00 2001 From: Johan Hovold <jhovold@xxxxxxxxx> Date: Sun, 11 Aug 2013 16:49:22 +0200 Subject: USB: adutux: fix big-endian device-type reporting From: Johan Hovold <jhovold@xxxxxxxxx> commit d482b9d558602a9cacab063b1c8779f9b5214da7 upstream. Make sure the reported device-type on big-endian machines is the same as on little-endian ones. Signed-off-by: Johan Hovold <jhovold@xxxxxxxxx> Signed-off-by: Ben Hutchings <ben@xxxxxxxxxxxxxxx> Cc: Yang Yingliang <yangyingliang@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/usb/misc/adutux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/drivers/usb/misc/adutux.c +++ b/drivers/usb/misc/adutux.c @@ -829,7 +829,7 @@ static int adu_probe(struct usb_interfac /* let the user know what node this device is now attached to */ dev_info(&interface->dev, "ADU%d %s now attached to /dev/usb/adutux%d\n", - udev->descriptor.idProduct, dev->serial_number, + le16_to_cpu(udev->descriptor.idProduct), dev->serial_number, (dev->minor - ADU_MINOR_BASE)); exit: dbg(2," %s : leave, return value %p (dev)", __func__, dev); Patches currently in stable-queue which might be from jhovold@xxxxxxxxx are queue-3.4/usb-mos7840-fix-memory-leak-in-open.patch queue-3.4/usb-oti6858-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-io_ti-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-pl2303-fix-device-initialisation-at-open.patch queue-3.4/usb-ch341-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-io_edgeport-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-ftdi_sio-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-ark3116-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-pl2303-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-cypress_m8-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-ssu100-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-keyspan-fix-null-deref-at-disconnect-and-release.patch queue-3.4/usb-mct_u232-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-spcp8x5-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-adutux-fix-big-endian-device-type-reporting.patch queue-3.4/usb-ti_usb_3410_5052-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-spcp8x5-fix-device-initialisation-at-open.patch queue-3.4/usb-mos7840-fix-race-in-register-handling.patch queue-3.4/usb-ftdi_sio-fixed-handling-of-unsupported-csize-setting.patch queue-3.4/usb-mos7840-fix-broken-tiocmiwait.patch queue-3.4/usb-serial-fix-hang-when-opening-port.patch queue-3.4/usb-mos7840-fix-use-after-free-in-tiocmiwait.patch queue-3.4/usb-ti_usb_3410_5052-fix-big-endian-firmware-handling.patch queue-3.4/usb-serial-add-modem-status-change-wait-queue.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html