Changeset 4501e207 in mainline
- Timestamp:
- 2011-10-12T17:31:05Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 96fde65
- Parents:
- aa1922c
- Location:
- uspace
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/uhcirh/port.h
raa1922c r4501e207 63 63 usb_hc_connection_t hc_connection; 64 64 ddf_dev_t *rh; 65 usb_h c_attached_device_t attached_device;65 usb_hub_attached_device_t attached_device; 66 66 fid_t checker; 67 67 } uhci_port_t; -
uspace/drv/bus/usb/usbhub/port.h
raa1922c r4501e207 58 58 59 59 /** Information about attached device. */ 60 usb_h c_attached_device_t attached_device;60 usb_hub_attached_device_t attached_device; 61 61 } usb_hub_port_t; 62 62 -
uspace/lib/usbdev/include/usb/dev/hub.h
raa1922c r4501e207 57 57 /** Devman handle of the device. */ 58 58 devman_handle_t handle; 59 } usb_h c_attached_device_t;59 } usb_hub_attached_device_t; 60 60 61 61 usb_address_t usb_hc_request_address(usb_hc_connection_t *, usb_speed_t); 62 62 int usb_hc_register_device(usb_hc_connection_t *, 63 const usb_h c_attached_device_t *);63 const usb_hub_attached_device_t *); 64 64 int usb_hc_unregister_device(usb_hc_connection_t *, usb_address_t); 65 65 -
uspace/lib/usbdev/src/hub.c
raa1922c r4501e207 95 95 */ 96 96 int usb_hc_register_device(usb_hc_connection_t * connection, 97 const usb_h c_attached_device_t *attached_device)97 const usb_hub_attached_device_t *attached_device) 98 98 { 99 99 CHECK_CONNECTION(connection); … … 332 332 * And now inform the host controller about the handle. 333 333 */ 334 usb_h c_attached_device_t new_device = {334 usb_hub_attached_device_t new_device = { 335 335 .address = dev_addr, 336 336 .handle = child_handle
Note:
See TracChangeset
for help on using the changeset viewer.