Changeset 72e19f50 in mainline
- Timestamp:
- 2011-01-29T10:31:09Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 37ac7bb
- Parents:
- 4687fcd4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci/root_hub/port.c
r4687fcd4 r72e19f50 15 15 int uhci_port_check(void *port) 16 16 { 17 async_usleep( 1000000 ); 17 18 uhci_port_t *port_instance = port; 18 19 assert(port_instance); 19 20 port_instance->hc_phone = devman_device_connect(port_instance->hc->handle, 0); 21 if (port_instance->hc_phone < 0) { 22 uhci_print_fatal("Failed(%d) to connect to the hc(handle=%x.\n", 23 port_instance->hc_phone, (unsigned)port_instance->hc->handle); 24 return port_instance->hc_phone; 25 } 20 26 21 27 while (1) {
Note:
See TracChangeset
for help on using the changeset viewer.