diff options
Diffstat (limited to 'drivers/usb/host/xhci.h')
-rw-r--r-- | drivers/usb/host/xhci.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/usb/host/xhci.h b/drivers/usb/host/xhci.h index ebf62082950b..e1383d91468b 100644 --- a/drivers/usb/host/xhci.h +++ b/drivers/usb/host/xhci.h | |||
@@ -919,6 +919,9 @@ struct xhci_event_cmd { | |||
919 | /* Control transfer TRB specific fields */ | 919 | /* Control transfer TRB specific fields */ |
920 | #define TRB_DIR_IN (1<<16) | 920 | #define TRB_DIR_IN (1<<16) |
921 | 921 | ||
922 | /* Isochronous TRB specific fields */ | ||
923 | #define TRB_SIA (1<<31) | ||
924 | |||
922 | struct xhci_generic_trb { | 925 | struct xhci_generic_trb { |
923 | u32 field[4]; | 926 | u32 field[4]; |
924 | }; | 927 | }; |
@@ -1416,6 +1419,8 @@ int xhci_queue_bulk_tx(struct xhci_hcd *xhci, gfp_t mem_flags, struct urb *urb, | |||
1416 | int slot_id, unsigned int ep_index); | 1419 | int slot_id, unsigned int ep_index); |
1417 | int xhci_queue_intr_tx(struct xhci_hcd *xhci, gfp_t mem_flags, struct urb *urb, | 1420 | int xhci_queue_intr_tx(struct xhci_hcd *xhci, gfp_t mem_flags, struct urb *urb, |
1418 | int slot_id, unsigned int ep_index); | 1421 | int slot_id, unsigned int ep_index); |
1422 | int xhci_queue_isoc_tx_prepare(struct xhci_hcd *xhci, gfp_t mem_flags, | ||
1423 | struct urb *urb, int slot_id, unsigned int ep_index); | ||
1419 | int xhci_queue_configure_endpoint(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, | 1424 | int xhci_queue_configure_endpoint(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, |
1420 | u32 slot_id, bool command_must_succeed); | 1425 | u32 slot_id, bool command_must_succeed); |
1421 | int xhci_queue_evaluate_context(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, | 1426 | int xhci_queue_evaluate_context(struct xhci_hcd *xhci, dma_addr_t in_ctx_ptr, |