Changeset ad104e0 in mainline
- Timestamp:
- 2010-12-04T17:00:14Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4689d40, 54b141a
- Parents:
- 6f04905
- Location:
- uspace/drv/vhc
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/vhc/Makefile
r6f04905 rad104e0 39 39 40 40 SOURCES = \ 41 addrmgm.c \ 41 42 conndev.c \ 42 43 connhost.c \ -
uspace/drv/vhc/conn.h
r6f04905 rad104e0 47 47 usbhc_iface_t vhc_iface; 48 48 49 void address_init(void); 50 int reserve_default_address(device_t *); 51 int release_default_address(device_t *); 52 int request_address(device_t *, usb_address_t *); 53 int release_address(device_t *, usb_address_t); 54 55 49 56 void default_connection_handler(device_t *, ipc_callid_t, ipc_call_t *); 50 57 -
uspace/drv/vhc/connhost.c
r6f04905 rad104e0 227 227 usbhc_iface_t vhc_iface = { 228 228 .tell_address = get_address, 229 230 .reserve_default_address = reserve_default_address, 231 .release_default_address = release_default_address, 232 .request_address = request_address, 233 .release_address = release_address, 234 229 235 .interrupt_out = interrupt_out, 230 236 .interrupt_in = interrupt_in, 237 231 238 .control_write_setup = control_write_setup, 232 239 .control_write_data = control_write_data, 233 240 .control_write_status = control_write_status, 241 234 242 .control_read_setup = control_read_setup, 235 243 .control_read_data = control_read_data, -
uspace/drv/vhc/hcd.c
r6f04905 rad104e0 72 72 73 73 /* 74 * Initialize address management. 75 */ 76 address_init(); 77 78 /* 74 79 * Initialize our hub and announce its presence. 75 80 */
Note:
See TracChangeset
for help on using the changeset viewer.