Changeset b357377 in mainline for uspace/lib/usbhost/include/usb/host/usb2_bus.h
- Timestamp:
- 2018-01-25T02:05:57Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d369b3b
- Parents:
- 5f0b366
- git-author:
- Ondřej Hlavatý <aearsis@…> (2018-01-25 01:23:20)
- git-committer:
- Ondřej Hlavatý <aearsis@…> (2018-01-25 02:05:57)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usbhost/include/usb/host/usb2_bus.h
r5f0b366 rb357377 42 42 43 43 #include <usb/host/bus.h> 44 #include <usb/host/bandwidth.h> 44 45 45 46 typedef struct usb2_bus usb2_bus_t; … … 57 58 /** Size of the bandwidth pool */ 58 59 size_t free_bw; 60 61 /* Configured bandwidth accounting */ 62 const bandwidth_accounting_t *bw_accounting; 59 63 } usb2_bus_t; 60 64 61 65 extern const bus_ops_t usb2_bus_ops; 62 66 63 extern void usb2_bus_init(usb2_bus_t *, size_t);67 extern void usb2_bus_init(usb2_bus_t *, const bandwidth_accounting_t *); 64 68 65 69 #endif
Note:
See TracChangeset
for help on using the changeset viewer.