Changeset fe5e00d6 in mainline
- Timestamp:
- 2010-11-27T09:13:32Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6c8ada21
- Parents:
- dac43be
- Location:
- uspace/lib/usb
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/usb/Makefile
rdac43be rfe5e00d6 37 37 src/hubdrv.c \ 38 38 src/localdrv.c \ 39 src/remotedrv.c \ 39 40 src/usb.c \ 40 41 src/usbdrv.c -
uspace/lib/usb/src/hcdhubd.c
rdac43be rfe5e00d6 205 205 } 206 206 207 /** Tell USB address of given device. 208 * 209 * @param handle Devman handle of the device. 210 * @return USB device address or error code. 211 */ 212 usb_address_t usb_get_address_by_handle(devman_handle_t handle) 213 { 214 /* TODO: search list of attached devices. */ 215 return ENOENT; 216 } 217 207 218 /** 208 219 * @} -
uspace/lib/usb/src/hcdhubd_private.h
rdac43be rfe5e00d6 42 42 extern usb_hc_driver_t *hc_driver; 43 43 44 extern usbhc_iface_t usbhc_interface; 45 46 usb_address_t usb_get_address_by_handle(devman_handle_t); 44 47 int usb_add_hc_device(device_t *); 45 48 int usb_add_hub_device(device_t *); -
uspace/lib/usb/src/hcdrv.c
rdac43be rfe5e00d6 50 50 usb_hc_driver_t *hc_driver = NULL; 51 51 52 static usbhc_iface_t usb_interface = {53 .interrupt_out = NULL,54 .interrupt_in = NULL55 };56 57 52 static device_ops_t usb_device_ops = { 58 .interfaces[USBHC_DEV_IFACE] = &usb _interface53 .interfaces[USBHC_DEV_IFACE] = &usbhc_interface 59 54 }; 60 55
Note:
See TracChangeset
for help on using the changeset viewer.