Changes in uspace/drv/uhci-rhd/port.c [67352d2:fb1d4990] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-rhd/port.c
r67352d2 rfb1d4990 44 44 45 45 #include "port.h" 46 #include "port_status.h" 46 47 47 48 static int uhci_port_new_device(uhci_port_t *port, usb_speed_t speed); … … 125 126 port_status_t port_status = uhci_port_read_status(instance); 126 127 127 /* print the value if it's interesting */ 128 if (port_status & ~STATUS_ALWAYS_ONE) 129 uhci_port_print_status(instance, port_status); 128 print_port_status(instance->id_string, port_status); 130 129 131 130 if ((port_status & STATUS_CONNECTED_CHANGED) == 0) … … 159 158 /* Write one to WC bits, to ack changes */ 160 159 uhci_port_write_status(instance, port_status); 161 usb_log_debug("%s: status changeACK.\n",160 usb_log_debug("%s: Change status ACK.\n", 162 161 instance->id_string); 163 162 }
Note:
See TracChangeset
for help on using the changeset viewer.