Changeset c56c5b5b in mainline for uspace/drv/uhci-hcd/transfer_list.c
- Timestamp:
- 2011-03-21T21:00:31Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c01cd32
- Parents:
- e099f26
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/transfer_list.c
re099f26 rc56c5b5b 110 110 last_qh = batch_qh(last); 111 111 } 112 const uint32_t pa = addr_to_phys(batch ->qh);112 const uint32_t pa = addr_to_phys(batch_qh(batch)); 113 113 assert((pa & LINK_POINTER_ADDRESS_MASK) == pa); 114 114 … … 205 205 /* I'm the first one here */ 206 206 assert((instance->queue_head->next & LINK_POINTER_ADDRESS_MASK) 207 == addr_to_phys(bat hc_qh(batch)));207 == addr_to_phys(batch_qh(batch))); 208 208 instance->queue_head->next = batch_qh(batch)->next; 209 209 qpos = "FIRST"; … … 219 219 list_remove(&batch->link); 220 220 usb_log_debug("Batch(%p) removed (%s) from %s, next %x.\n", 221 batch, pos, instance->name, batch_qh(batch)->next);221 batch, qpos, instance->name, batch_qh(batch)->next); 222 222 } 223 223 /**
Note:
See TracChangeset
for help on using the changeset viewer.