Changeset 32fb6bce in mainline for uspace/drv/bus/usb/ehci/ehci_bus.c
- Timestamp:
- 2017-12-18T22:50:21Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7f70d1c
- Parents:
- 1ea0bbf
- git-author:
- Ondřej Hlavatý <aearsis@…> (2017-12-18 22:04:50)
- git-committer:
- Ondřej Hlavatý <aearsis@…> (2017-12-18 22:50:21)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/ehci_bus.c
r1ea0bbf r32fb6bce 162 162 .parent = &usb2_bus_ops, 163 163 164 .interrupt = ehci_hc_interrupt, 165 .status = ehci_hc_status, 164 166 .endpoint_destroy = ehci_endpoint_destroy, 165 167 .endpoint_create = ehci_endpoint_create, … … 171 173 .batch_create = ehci_create_batch, 172 174 .batch_destroy = ehci_destroy_batch, 175 .batch_schedule = ehci_hc_schedule, 173 176 }; 174 177 175 int ehci_bus_init(ehci_bus_t *bus, hc d_t *hcd, hc_t *hc)178 int ehci_bus_init(ehci_bus_t *bus, hc_t *hc) 176 179 { 177 180 assert(hc); … … 181 184 bus_t *bus_base = (bus_t *) bus; 182 185 183 usb2_bus_init(usb2_bus, hcd,BANDWIDTH_AVAILABLE_USB11);186 usb2_bus_init(usb2_bus, BANDWIDTH_AVAILABLE_USB11); 184 187 bus_base->ops = &ehci_bus_ops; 185 188
Note:
See TracChangeset
for help on using the changeset viewer.