Changeset 7ce0fe3 in mainline for uspace/drv/uhci-rhd/root_hub.c
- Timestamp:
- 2011-02-01T22:02:23Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- afcd86e
- Parents:
- 993a1e1
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-rhd/root_hub.c
r993a1e1 r7ce0fe3 6 6 7 7 #include <usb/usbdrv.h> 8 #include <usb/debug.h> 8 9 9 #include "debug.h"10 10 #include "root_hub.h" 11 11 … … 18 18 int ret; 19 19 ret = usb_drv_find_hc(rh, &instance->hc_handle); 20 u hci_print_info("rh found(%d) hc handle: %d.\n", ret, instance->hc_handle);20 usb_log_info("rh found(%d) hc handle: %d.\n", ret, instance->hc_handle); 21 21 if (ret != EOK) { 22 22 return ret; … … 27 27 //usb_drv_hc_connect(rh, instance->hc_handle, 0); 28 28 if (rh->parent_phone < 0) { 29 u hci_print_error("Failed to connect to the HC device.\n");29 usb_log_error("Failed to connect to the HC device.\n"); 30 30 return rh->parent_phone; 31 31 } … … 38 38 39 39 if (ret < 0) { 40 u hci_print_error(":Failed to gain access to port registers at %p\n", regs);40 usb_log_error("Failed to gain access to port registers at %p\n", regs); 41 41 return ret; 42 42 }
Note:
See TracChangeset
for help on using the changeset viewer.