summaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/xhci.c
diff options
context:
space:
mode:
authorMing Lei2013-08-08 15:48:23 +0200
committerGreg Kroah-Hartman2013-08-12 20:56:16 +0200
commitfc76051c453b4e65e736aed10e57192adcbcd453 (patch)
tree1e0d83af539eec72970f1aa316c18841e2e88154 /drivers/usb/host/xhci.c
parentUSB: introduce usb_device_no_sg_constraint() helper (diff)
downloadkernel-qcow2-linux-fc76051c453b4e65e736aed10e57192adcbcd453.tar.gz
kernel-qcow2-linux-fc76051c453b4e65e736aed10e57192adcbcd453.tar.xz
kernel-qcow2-linux-fc76051c453b4e65e736aed10e57192adcbcd453.zip
USB: XHCI: mark no_sg_constraint
This patch marks all xHCI controllers as no_sg_constraint since xHCI supports building packet from discontinuous buffers. Cc: Alan Stern <stern@rowland.harvard.edu> Acked-by: Sarah Sharp <sarah.a.sharp@linux.intel.com> Signed-off-by: Ming Lei <ming.lei@canonical.com> Reviewed-by: Eric Dumazet <edumazet@google.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host/xhci.c')
-rw-r--r--drivers/usb/host/xhci.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/usb/host/xhci.c b/drivers/usb/host/xhci.c
index c8d7199eefa0..246de8905db1 100644
--- a/drivers/usb/host/xhci.c
+++ b/drivers/usb/host/xhci.c
@@ -4841,6 +4841,10 @@ int xhci_gen_setup(struct usb_hcd *hcd, xhci_get_quirks_t get_quirks)
/* Accept arbitrarily long scatter-gather lists */
hcd->self.sg_tablesize = ~0;
+
+ /* support to build packet from discontinuous buffers */
+ hcd->self.no_sg_constraint = 1;
+
/* XHCI controllers don't stop the ep queue on short packets :| */
hcd->self.no_stop_on_short = 1;