Changeset d1e580a in mainline for uspace/drv/bus/usb/uhci/transfer_list.c
- Timestamp:
- 2012-07-29T03:07:52Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 10334c2e
- Parents:
- d7c8e39f (diff), b2ba418 (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/bus/usb/uhci/transfer_list.c
rd7c8e39f rd1e580a 42 42 static void transfer_list_remove_batch( 43 43 transfer_list_t *instance, uhci_transfer_batch_t *uhci_batch); 44 /*----------------------------------------------------------------------------*/ 44 45 45 /** Initialize transfer list structures. 46 46 * … … 69 69 return EOK; 70 70 } 71 /*----------------------------------------------------------------------------*/ 71 72 72 /** Dispose transfer list structures. 73 73 * … … 97 97 qh_set_next_qh(instance->queue_head, next->queue_head); 98 98 } 99 /*----------------------------------------------------------------------------*/ 99 100 100 /** Add transfer batch to the list and queue. 101 101 * … … 144 144 fibril_mutex_unlock(&instance->guard); 145 145 } 146 /*----------------------------------------------------------------------------*/ 146 147 147 /** Add completed batches to the provided list. 148 148 * … … 171 171 fibril_mutex_unlock(&instance->guard); 172 172 } 173 /*----------------------------------------------------------------------------*/ 173 174 174 /** Walk the list and finish all batches with EINTR. 175 175 * … … 188 188 fibril_mutex_unlock(&instance->guard); 189 189 } 190 /*----------------------------------------------------------------------------*/ 190 191 191 /** Remove a transfer batch from the list and queue. 192 192 *
Note:
See TracChangeset
for help on using the changeset viewer.