Changeset 1ae51ae in mainline for uspace/drv/uhci-hcd/uhci.c
- Timestamp:
- 2011-02-27T02:39:13Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ad6857c
- Parents:
- 48563a3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/uhci.c
r48563a3 r1ae51ae 48 48 { 49 49 .cmd = CMD_PIO_READ_16, 50 .addr = (void*)0xc022,50 .addr = NULL, /* patched for every instance */ 51 51 .dstarg = 1 52 52 }, 53 53 { 54 54 .cmd = CMD_PIO_WRITE_16, 55 .addr = (void*)0xc022,55 .addr = NULL, /* pathed for every instance */ 56 56 .value = 0x1f 57 57 }, … … 61 61 }; 62 62 63 64 63 static int usb_iface_get_address(ddf_fun_t *fun, devman_handle_t handle, 65 64 usb_address_t *address) … … 69 68 assert(hc); 70 69 71 // usb_address_t addr = usb_address_keeping_find(&hc->address_manager,72 // handle);73 70 usb_address_t addr = device_keeper_find(&hc->device_manager, 74 71 handle);
Note:
See TracChangeset
for help on using the changeset viewer.