Changeset 0969e45e in mainline
- Timestamp:
- 2011-03-07T18:27:04Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 1d115c8
- Parents:
- 3b271e3
- Location:
- uspace
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/doc/doxygroups.h
r3b271e3 r0969e45e 256 256 */ 257 257 258 /** 259 * @defgroup drvusbehci EHCI driver 260 * @ingroup usb 261 * @brief Driver for EHCI host controller. 262 */ 263 264 -
uspace/drv/ehci-hcd/main.c
r3b271e3 r0969e45e 1 1 /* 2 * Copyright (c) 2011 Vojtech Horky, Jan Vesely 2 * Copyright (c) 2011 Jan Vesely 3 * Copyright (c) 2011 Vojtech Horky 3 4 * All rights reserved. 4 5 * … … 26 27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 28 */ 28 /** @addtogroup usb 29 /** @addtogroup usbdrvehci 29 30 * @{ 30 31 */ 31 32 /** @file 32 * @brief UHCI driver33 * Main routines of EHCI driver. 33 34 */ 34 35 #include <ddf/driver.h> -
uspace/drv/ehci-hcd/pci.c
r3b271e3 r0969e45e 27 27 */ 28 28 /** 29 * @addtogroup drvusb uhci29 * @addtogroup drvusbehci 30 30 * @{ 31 31 */ 32 32 /** 33 33 * @file 34 * PCI related functions needed by the UHCI driver.34 * PCI related functions needed by the EHCI driver. 35 35 */ 36 36 #include <errno.h> -
uspace/drv/ehci-hcd/pci.h
r3b271e3 r0969e45e 1 1 /* 2 * Copyright (c) 201 0Vojtech Horky2 * Copyright (c) 2011 Vojtech Horky 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup drvusb uhci29 /** @addtogroup drvusbehci 30 30 * @{ 31 31 */ 32 32 /** @file 33 * @brief UHCI driver33 * PCI related functions needed by EHCI driver. 34 34 */ 35 #ifndef DRV_ UHCI_PCI_H36 #define DRV_ UHCI_PCI_H35 #ifndef DRV_EHCI_PCI_H 36 #define DRV_EHCI_PCI_H 37 37 38 38 #include <ddf/driver.h>
Note:
See TracChangeset
for help on using the changeset viewer.