Changeset 4090f66 in mainline
- Timestamp:
- 2014-01-25T20:46:27Z (11 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b137d9e
- Parents:
- 1803b7d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/ehci_batch.c
r1803b7d r4090f66 287 287 buffer, ehci_batch->usb_batch->setup_size, toggle, false); 288 288 usb_log_debug("Created CONTROL SETUP TD(%"PRIxn"): %08x:%08x:%08x", 289 addr_to_phys(ehci_batch-> qh),289 addr_to_phys(ehci_batch->tds[0]), 290 290 ehci_batch->tds[0]->status, ehci_batch->tds[0]->next, 291 291 ehci_batch->tds[0]->alternate); … … 304 304 transfer_size, toggle, false); 305 305 usb_log_debug2("Created CONTROL DATA TD(%"PRIxn"): %08x:%08x:%08x", 306 addr_to_phys(ehci_batch-> qh),306 addr_to_phys(ehci_batch->tds[td_current]), 307 307 ehci_batch->tds[td_current]->status, 308 308 ehci_batch->tds[td_current]->next, … … 319 319 td_init(ehci_batch->tds[td_current], NULL, status_dir, NULL, 0, 1, true); 320 320 usb_log_debug("Created CONTROL STATUS TD(%"PRIxn"): %08x:%08x:%08x", 321 addr_to_phys(ehci_batch-> qh),321 addr_to_phys(ehci_batch->tds[td_current]), 322 322 ehci_batch->tds[td_current]->status, 323 323 ehci_batch->tds[td_current]->next, … … 363 363 364 364 usb_log_debug("Created DATA TD(%"PRIxn": %08x:%08x:%08x", 365 addr_to_phys(ehci_batch-> qh),365 addr_to_phys(ehci_batch->tds[td_current]), 366 366 ehci_batch->tds[td_current]->status, 367 367 ehci_batch->tds[td_current]->next,
Note:
See TracChangeset
for help on using the changeset viewer.