Changeset 1d1bb0f in mainline for uspace/drv/ohci/hc.c
- Timestamp:
- 2011-06-19T13:38:37Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b72efe8
- Parents:
- adfdbd5 (diff), 9724d7f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/ohci/hc.c
radfdbd5 r1d1bb0f 65 65 device_keeper_get_free_address(&instance->manager, USB_SPEED_FULL); 66 66 if (hub_address <= 0) { 67 usb_log_error("Failed (%d) to get OHCI root hub address.\n",68 hub_address);67 usb_log_error("Failed to get OHCI root hub address: %s\n", 68 str_error(hub_address)); 69 69 return hub_address; 70 70 } … … 445 445 /* HC is in reset (hw startup) => no other driver 446 446 * maintain reset for at least the time specified in USB spec (50 ms)*/ 447 usb_log_ info("HC found in reset.\n");447 usb_log_debug("Host controller found in reset state.\n"); 448 448 async_usleep(50000); 449 449 } … … 516 516 517 517 instance->registers->control &= (C_HCFS_OPERATIONAL << C_HCFS_SHIFT); 518 usb_log_ info("OHCI HC up and running(%x).\n",518 usb_log_debug("OHCI HC up and running (ctl_reg=0x%x).\n", 519 519 instance->registers->control); 520 520 }
Note:
See TracChangeset
for help on using the changeset viewer.