Changeset 37f7cfe in mainline for uspace/drv/vhc/hc.c
- Timestamp:
- 2010-12-13T01:11:27Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 75732da, a9b6bec
- Parents:
- 682b697 (diff), f9a0cef (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/vhc/hc.c
r682b697 r37f7cfe 50 50 #include "hub.h" 51 51 52 #define USLEEP_BASE (0 * 5 00* 1000)52 #define USLEEP_BASE (0 * 5 * 1000) 53 53 54 #define USLEEP_VAR 50 0054 #define USLEEP_VAR 50 55 55 56 56 #define SHORTENING_VAR 15 … … 89 89 usb_transaction_outcome_t outcome) 90 90 { 91 dprintf(3, " processing transaction " TRANSACTION_FORMAT ", outcome: %s",91 dprintf(3, "transaction " TRANSACTION_FORMAT " done, outcome: %s", 92 92 TRANSACTION_PRINTF(*transaction), 93 93 usb_str_transaction_outcome(outcome)); … … 116 116 char ports[HUB_PORT_COUNT + 2]; 117 117 hub_get_port_statuses(ports, HUB_PORT_COUNT + 1); 118 dprintf( 0, "virtual hub: addr=%d ports=%s",118 dprintf(4, "virtual hub: addr=%d ports=%s", 119 119 virthub_dev.address, ports); 120 120 … … 124 124 list_remove(first_transaction_link); 125 125 126 127 dprintf(0, "about to process " TRANSACTION_FORMAT " (vhub:%s)", 128 TRANSACTION_PRINTF(*transaction), ports); 129 126 130 dprintf(3, "processing transaction " TRANSACTION_FORMAT "", 127 131 TRANSACTION_PRINTF(*transaction));
Note:
See TracChangeset
for help on using the changeset viewer.