Changeset 9600516 in mainline for uspace/drv/uhci/callback.h
- Timestamp:
- 2011-01-21T16:49:47Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 643b983
- Parents:
- 1062c8d
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci/callback.h
r1062c8d r9600516 1 2 1 /* 3 2 * Copyright (c) 2010 Jan Vesely … … 33 32 * @brief UHCI driver 34 33 */ 35 #ifndef DRV_UHCI_ QH_H36 #define DRV_UHCI_ QH_H34 #ifndef DRV_UHCI_CALLBACK_H 35 #define DRV_UHCI_CALLBACK_H 37 36 38 #include "link_ptr.h"37 #include <usbhc_iface.h> 39 38 40 typedef struct qh { 41 link_ptr_t 42 } __attribute__(("packed")) link_ptr_t; 39 typedef struct callback 40 { 41 union { 42 usbhc_iface_transfer_in_callback_t callback_in; 43 usbhc_iface_transfer_out_callback_t callback_out; 44 }; 45 void* buffer; 46 } callback_t; 43 47 44 48 #endif
Note:
See TracChangeset
for help on using the changeset viewer.