Changeset 0f3e68c in mainline for uspace/drv/uhci-rhd/port.c
- Timestamp:
- 2011-03-12T22:36:33Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 335382d
- Parents:
- dd6f59f (diff), 67352d2 (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
-
uspace/drv/uhci-rhd/port.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-rhd/port.c
rdd6f59f r0f3e68c 44 44 45 45 #include "port.h" 46 #include "port_status.h"47 46 48 47 static int uhci_port_new_device(uhci_port_t *port, usb_speed_t speed); … … 126 125 port_status_t port_status = uhci_port_read_status(instance); 127 126 128 print_port_status(instance->id_string, port_status); 127 /* print the value if it's interesting */ 128 if (port_status & ~STATUS_ALWAYS_ONE) 129 uhci_port_print_status(instance, port_status); 129 130 130 131 if ((port_status & STATUS_CONNECTED_CHANGED) == 0) … … 158 159 /* Write one to WC bits, to ack changes */ 159 160 uhci_port_write_status(instance, port_status); 160 usb_log_debug("%s: Change statusACK.\n",161 usb_log_debug("%s: status change ACK.\n", 161 162 instance->id_string); 162 163 }
Note:
See TracChangeset
for help on using the changeset viewer.
