]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
4.9-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 30 Mar 2019 20:34:27 +0000 (21:34 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 30 Mar 2019 20:34:27 +0000 (21:34 +0100)
added patches:
usb-host-xhci-rcar-add-xhci_trust_tx_length-quirk.patch

queue-4.9/series
queue-4.9/usb-host-xhci-rcar-add-xhci_trust_tx_length-quirk.patch [new file with mode: 0644]

index b1ab20d10a2a606b923163e0417f983bed8291ab..e3f4ce2a186f20d6f91743e03b2486ba259a3d63 100644 (file)
@@ -44,3 +44,4 @@ disable-kgdboc-failed-by-echo-space-to-sys-module-kgdboc-parameters-kgdboc.patch
 fs-proc-proc_sysctl.c-fix-null-pointer-dereference-in-put_links.patch
 gpio-adnp-fix-testing-wrong-value-in-adnp_gpio_direction_input.patch
 usb-common-consider-only-available-nodes-for-dr_mode.patch
+usb-host-xhci-rcar-add-xhci_trust_tx_length-quirk.patch
diff --git a/queue-4.9/usb-host-xhci-rcar-add-xhci_trust_tx_length-quirk.patch b/queue-4.9/usb-host-xhci-rcar-add-xhci_trust_tx_length-quirk.patch
new file mode 100644 (file)
index 0000000..b7537d9
--- /dev/null
@@ -0,0 +1,37 @@
+From 40fc165304f0faaae78b761f8ee30b5d216b1850 Mon Sep 17 00:00:00 2001
+From: Yasushi Asano <yasano@jp.adit-jv.com>
+Date: Mon, 18 Feb 2019 11:26:34 +0100
+Subject: usb: host: xhci-rcar: Add XHCI_TRUST_TX_LENGTH quirk
+
+From: Yasushi Asano <yasano@jp.adit-jv.com>
+
+commit 40fc165304f0faaae78b761f8ee30b5d216b1850 upstream.
+
+When plugging BUFFALO LUA4-U3-AGT USB3.0 to Gigabit Ethernet LAN
+Adapter, warning messages filled up dmesg.
+
+[  101.098287] xhci-hcd ee000000.usb: WARN Successful completion on short TX for slot 1 ep 4: needs XHCI_TRUST_TX_LENGTH quirk?
+[  101.117463] xhci-hcd ee000000.usb: WARN Successful completion on short TX for slot 1 ep 4: needs XHCI_TRUST_TX_LENGTH quirk?
+[  101.136513] xhci-hcd ee000000.usb: WARN Successful completion on short TX for slot 1 ep 4: needs XHCI_TRUST_TX_LENGTH quirk?
+
+Adding the XHCI_TRUST_TX_LENGTH quirk resolves the issue.
+
+Signed-off-by: Yasushi Asano <yasano@jp.adit-jv.com>
+Signed-off-by: Spyridon Papageorgiou <spapageorgiou@de.adit-jv.com>
+Acked-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
+Cc: stable <stable@vger.kernel.org>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+
+---
+ drivers/usb/host/xhci-rcar.c |    1 +
+ 1 file changed, 1 insertion(+)
+
+--- a/drivers/usb/host/xhci-rcar.c
++++ b/drivers/usb/host/xhci-rcar.c
+@@ -192,5 +192,6 @@ int xhci_rcar_init_quirk(struct usb_hcd
+                       xhci_rcar_is_gen3(hcd->self.controller))
+               xhci->quirks |= XHCI_NO_64BIT_SUPPORT;
++      xhci->quirks |= XHCI_TRUST_TX_LENGTH;
+       return xhci_rcar_download_firmware(hcd);
+ }