Changeset a1f83a3 in mainline
- Timestamp:
 - 2017-11-14T16:35:59Z (8 years ago)
 - Branches:
 - lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
 - Children:
 - cfe4852
 - Parents:
 - 6cad776
 - Location:
 - uspace/lib/usbhost
 - Files:
 - 
      
- 2 edited
 
- 
          
  include/usb/host/hcd.h (modified) (1 diff)
 - 
          
  src/hcd.c (modified) (1 diff)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
uspace/lib/usbhost/include/usb/host/hcd.h
r6cad776 ra1f83a3 102 102 } 103 103 104 extern usb_address_t hcd_request_address(hcd_t *, usb_speed_t);105 106 extern int hcd_add_ep(hcd_t *, usb_target_t, usb_direction_t,107 usb_transfer_type_t, size_t, unsigned int, size_t, usb_tt_address_t);108 109 extern int hcd_remove_ep(hcd_t *, usb_target_t, usb_direction_t);110 111 104 extern int hcd_send_batch(hcd_t *, device_t *, usb_target_t, 112 105 usb_direction_t direction, char *, size_t, uint64_t,  - 
      
uspace/lib/usbhost/src/hcd.c
r6cad776 ra1f83a3 58 58 59 59 hcd_set_implementation(hcd, NULL, NULL, NULL); 60 }61 62 usb_address_t hcd_request_address(hcd_t *hcd, usb_speed_t speed)63 {64 assert(hcd);65 usb_address_t address = 0;66 const int ret = bus_request_address(hcd->bus, &address, false, speed);67 if (ret != EOK)68 return ret;69 return address;70 60 } 71 61  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.
  