Changeset 64ce0c1 in mainline for uspace/drv/bus/usb/usbdiag/device.h
- Timestamp:
- 2018-02-02T10:13:55Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 961a5ee
- Parents:
- e67c50a (diff), 290338b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/usbdiag/device.h
re67c50a r64ce0c1 40 40 #include <usb/dev/driver.h> 41 41 42 #define USBDIAG_EP_INTR_IN 1 43 #define USBDIAG_EP_INTR_OUT 2 44 #define USBDIAG_EP_BULK_IN 3 45 #define USBDIAG_EP_BULK_OUT 4 46 #define USBDIAG_EP_ISOCH_IN 5 47 #define USBDIAG_EP_ISOCH_OUT 6 42 #define USBDIAG_EP_BURST_INTR_IN 1 43 #define USBDIAG_EP_BURST_INTR_OUT 2 44 #define USBDIAG_EP_BURST_BULK_IN 3 45 #define USBDIAG_EP_BURST_BULK_OUT 4 46 #define USBDIAG_EP_BURST_ISOCH_IN 5 47 #define USBDIAG_EP_BURST_ISOCH_OUT 6 48 49 #define USBDIAG_EP_DATA_INTR_IN 7 50 #define USBDIAG_EP_DATA_INTR_OUT 8 51 #define USBDIAG_EP_DATA_BULK_IN 9 52 #define USBDIAG_EP_DATA_BULK_OUT 10 53 #define USBDIAG_EP_DATA_ISOCH_IN 11 54 #define USBDIAG_EP_DATA_ISOCH_OUT 12 48 55 49 56 /** … … 53 60 usb_device_t *usb_dev; 54 61 ddf_fun_t *fun; 55 usb_pipe_t *intr_in; 56 usb_pipe_t *intr_out; 57 usb_pipe_t *bulk_in; 58 usb_pipe_t *bulk_out; 59 usb_pipe_t *isoch_in; 60 usb_pipe_t *isoch_out; 62 63 usb_pipe_t *burst_intr_in; 64 usb_pipe_t *burst_intr_out; 65 usb_pipe_t *burst_bulk_in; 66 usb_pipe_t *burst_bulk_out; 67 usb_pipe_t *burst_isoch_in; 68 usb_pipe_t *burst_isoch_out; 69 70 usb_pipe_t *data_intr_in; 71 usb_pipe_t *data_intr_out; 72 usb_pipe_t *data_bulk_in; 73 usb_pipe_t *data_bulk_out; 74 usb_pipe_t *data_isoch_in; 75 usb_pipe_t *data_isoch_out; 76 61 77 } usbdiag_dev_t; 62 78
Note:
See TracChangeset
for help on using the changeset viewer.