Changeset 27ed734c in mainline for uspace/drv/bus/usb/vhc/connhost.c
- Timestamp:
- 2011-10-31T13:06:57Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5e07cbc0
- Parents:
- d25e0a4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/vhc/connhost.c
rd25e0a4 r27ed734c 479 479 } 480 480 481 static int tell_address(ddf_fun_t *fun, devman_handle_t handle, 482 usb_address_t *address) 481 static int tell_address(ddf_fun_t *fun, usb_address_t *address) 483 482 { 484 483 UNSUPPORTED("tell_address"); … … 497 496 } 498 497 499 static int tell_address_rh(ddf_fun_t *root_hub_fun, devman_handle_t handle, 500 usb_address_t *address) 498 static int tell_address_rh(ddf_fun_t *root_hub_fun, usb_address_t *address) 501 499 { 502 500 VHC_DATA(vhc, root_hub_fun); 503 501 504 if (handle == 0) { 505 handle = root_hub_fun->handle; 506 } 502 devman_handle_t handle = root_hub_fun->handle; 507 503 508 504 usb_log_debug("tell_address_rh(handle=%" PRIun ")\n", handle); … … 532 528 usb_iface_t vhc_usb_iface = { 533 529 .get_hc_handle = usb_iface_get_hc_handle_hc_impl, 534 .get_ address = tell_address530 .get_my_address = tell_address 535 531 }; 536 532 537 533 usb_iface_t rh_usb_iface = { 538 534 .get_hc_handle = usb_iface_get_hc_handle_rh_impl, 539 .get_ address = tell_address_rh535 .get_my_address = tell_address_rh 540 536 }; 541 537
Note:
See TracChangeset
for help on using the changeset viewer.