Changeset fa4b12d5 in mainline
- Timestamp:
- 2018-01-25T12:20:11Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- d08aa42d
- Parents:
- 296d22fc
- Location:
- uspace
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/xhci/device.c
r296d22fc rfa4b12d5 116 116 117 117 uint16_t max_packet_size; 118 if ((err = hc_get_ep0_max_packet_size(&max_packet_size, 119 (bus_t *) &hc->bus, &dev->base))) 118 if ((err = hc_get_ep0_max_packet_size(&max_packet_size, &dev->base))) 120 119 return err; 121 120 -
uspace/lib/usbhost/include/usb/host/utility.h
r296d22fc rfa4b12d5 47 47 48 48 uint16_t hc_get_ep0_initial_mps(usb_speed_t); 49 int hc_get_ep0_max_packet_size(uint16_t *, bus_t *,device_t *);49 int hc_get_ep0_max_packet_size(uint16_t *, device_t *); 50 50 void hc_reset_toggles(const usb_transfer_batch_t *batch, endpoint_reset_toggle_t); 51 51 int hc_setup_virtual_root_hub(hc_device_t *, usb_speed_t); -
uspace/lib/usbhost/src/usb2_bus.c
r296d22fc rfa4b12d5 130 130 } 131 131 132 if ((err = hc_get_ep0_max_packet_size(&ep0_desc.endpoint.max_packet_size, dev ->bus, dev)))132 if ((err = hc_get_ep0_max_packet_size(&ep0_desc.endpoint.max_packet_size, dev))) 133 133 goto err_address; 134 134 -
uspace/lib/usbhost/src/utility.c
r296d22fc rfa4b12d5 75 75 * @return Max packet size for EP 0 (in bytes) 76 76 */ 77 int hc_get_ep0_max_packet_size(uint16_t *mps, bus_t *bus,device_t *dev)77 int hc_get_ep0_max_packet_size(uint16_t *mps, device_t *dev) 78 78 { 79 79 assert(mps);
Note:
See TracChangeset
for help on using the changeset viewer.