Changeset 3e37964 in mainline for uspace/drv/uhci-hcd/iface.c
- Timestamp:
- 2011-03-06T17:39:23Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 98807e16
- Parents:
- edb5f837
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/iface.c
redb5f837 r3e37964 117 117 if (!batch) 118 118 return ENOMEM; 119 batch_interrupt_out(batch );119 batch_interrupt_out(batch, &hc->device_manager); 120 120 return EOK; 121 121 } … … 136 136 if (!batch) 137 137 return ENOMEM; 138 batch_interrupt_in(batch );138 batch_interrupt_in(batch, &hc->device_manager); 139 139 return EOK; 140 140 } … … 156 156 if (!batch) 157 157 return ENOMEM; 158 batch_bulk_out(batch );158 batch_bulk_out(batch, &hc->device_manager); 159 159 return EOK; 160 160 } … … 175 175 if (!batch) 176 176 return ENOMEM; 177 batch_bulk_in(batch );177 batch_bulk_in(batch, &hc->device_manager); 178 178 return EOK; 179 179 }
Note:
See TracChangeset
for help on using the changeset viewer.