public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [RFC] usb: Broaden range of vendor codes for xhci
@ 2011-05-30  9:56 Maarten Lankhorst
  2011-05-31  0:34 ` Xu, Andiry
  0 siblings, 1 reply; 11+ messages in thread
From: Maarten Lankhorst @ 2011-05-30  9:56 UTC (permalink / raw)
  To: linux-usb; +Cc: Sarah Sharp, linux-kernel, Maarten Lankhorst

My asrock P67 chipset sends code 192 on device reset. Allowing >= 192 to be treated as success fixes it, and allows me to use my USB3 port.

Signed-off-by: Maarten Lankhorst <m.b.lankhorst@gmail.com>

---
There still appears to be a possible regression though. I can't currently use my usb headset, but since my xhci port never worked, I can't tell for sure if it ever worked.

Resending, forgot to add relevant maintainers.
---
 drivers/usb/host/xhci-ring.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/usb/host/xhci-ring.c b/drivers/usb/host/xhci-ring.c
index 7437386..f8b9f79 100644
--- a/drivers/usb/host/xhci-ring.c
+++ b/drivers/usb/host/xhci-ring.c
@@ -1464,7 +1464,7 @@ static int xhci_requires_manual_halt_cleanup(struct xhci_hcd *xhci,
 
 int xhci_is_vendor_info_code(struct xhci_hcd *xhci, unsigned int trb_comp_code)
 {
-	if (trb_comp_code >= 224 && trb_comp_code <= 255) {
+	if (trb_comp_code >= 192 && trb_comp_code <= 255) {
 		/* Vendor defined "informational" completion code,
 		 * treat as not-an-error.
 		 */
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2011-06-01 19:39 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-30  9:56 [PATCH] [RFC] usb: Broaden range of vendor codes for xhci Maarten Lankhorst
2011-05-31  0:34 ` Xu, Andiry
2011-05-31 13:47   ` [PATCH] [RFC] usb: Do not attempt to reset the device while it is disabled Maarten Lankhorst
2011-05-31 17:14     ` Sarah Sharp
2011-05-31 17:41       ` Maarten Lankhorst
2011-05-31 18:18         ` Sarah Sharp
2011-05-31 19:07           ` Maarten Lankhorst
2011-05-31 22:35             ` Sarah Sharp
2011-05-31 22:55               ` Maarten Lankhorst
2011-05-31 23:57               ` Maarten Lankhorst
2011-06-01 19:39                 ` Sarah Sharp

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox