Changeset b4b534ac in mainline for uspace/drv/bus/usb/ehci/hw_struct/fstn.h
- Timestamp:
- 2016-07-22T08:24:47Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f76d2c2
- Parents:
- 5b18137 (diff), 8351f9a4 (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 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/bus/usb/ehci/hw_struct/fstn.h
r5b18137 rb4b534ac 1 1 /* 2 * Copyright (c) 201 1Jan Vesely2 * Copyright (c) 2013 Jan Vesely 3 3 * All rights reserved. 4 4 * … … 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 29 /** @addtogroup drvusbuhci 28 /** @addtogroup drvusbehci 30 29 * @{ 31 30 */ 32 31 /** @file 33 * @brief UHCI driver main structure for both host controller and root-hub.32 * @brief EHCI driver 34 33 */ 35 #ifndef DRV_UHCI_UHCI_H 36 #define DRV_UHCI_UHCI_H 37 #include <ddf/driver.h> 34 #ifndef DRV_EHCI_HW_STRUCT_FSTN_H 35 #define DRV_EHCI_HW_STRUCT_FSTN_H 38 36 39 int device_setup_uhci(ddf_dev_t *device); 37 #include "link_pointer.h" 38 39 typedef struct fstn { 40 link_pointer_t normal_path; 41 link_pointer_t back_path; 42 } fstn_t; 43 40 44 #endif 41 45 /** 42 46 * @} 43 47 */ 48
Note:
See TracChangeset
for help on using the changeset viewer.