Changes in uspace/drv/uhci-rhd/main.c [f9c03b5:4125b7d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-rhd/main.c
rf9c03b5 r4125b7d 1 1 /* 2 * Copyright (c) 2011 Vojtech Horky,Jan Vesely2 * Copyright (c) 2011 Jan Vesely 3 3 * All rights reserved. 4 4 * … … 84 84 return EINVAL; 85 85 86 usb_log_debug2("%s called device %d\n", __FUNCTION__, device->handle); 86 usb_log_debug2("uhci_rh_add_device(handle=%" PRIun ")\n", 87 device->handle); 87 88 88 89 uintptr_t io_regs = 0; … … 101 102 ret = hc_get_my_registers(device, &io_regs, &io_size); 102 103 CHECK_RET_FREE_RH_RETURN(ret, 103 "Failed(%d) to get registers from HC: %s.\n", ret, str_error(ret)); 104 usb_log_debug("I/O regs at %#x (size %zu).\n", io_regs, io_size); 104 "Failed to get registers from HC: %s.\n", str_error(ret)); 105 usb_log_debug("I/O regs at %p (size %zuB).\n", 106 (void *) io_regs, io_size); 105 107 106 108 rh = malloc(sizeof(uhci_root_hub_t)); … … 115 117 116 118 device->driver_data = rh; 117 usb_log_info("Controlling root hub '%s' (% llu).\n",119 usb_log_info("Controlling root hub '%s' (%" PRIun ").\n", 118 120 device->name, device->handle); 119 121 return EOK;
Note:
See TracChangeset
for help on using the changeset viewer.