Changes in uspace/drv/ehci-hcd/main.c [0969e45e:0d3167e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/ehci-hcd/main.c
r0969e45e r0d3167e 1 1 /* 2 * Copyright (c) 2011 Jan Vesely 3 * Copyright (c) 2011 Vojtech Horky 2 * Copyright (c) 2011 Vojtech Horky, Jan Vesely 4 3 * All rights reserved. 5 4 * … … 27 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 27 */ 29 /** @addtogroup usb drvehci28 /** @addtogroup usb 30 29 * @{ 31 30 */ 32 31 /** @file 33 * Main routines of EHCI driver.32 * @brief UHCI driver 34 33 */ 35 34 #include <ddf/driver.h> … … 58 57 }; 59 58 /*----------------------------------------------------------------------------*/ 59 /** Initializes a new ddf driver instance of EHCI hcd. 60 * 61 * @param[in] device DDF instance of the device to initialize. 62 * @return Error code. 63 */ 60 64 static int ehci_add_device(ddf_dev_t *device) 61 65 { … … 88 92 } 89 93 /*----------------------------------------------------------------------------*/ 94 /** Initializes global driver structures (NONE). 95 * 96 * @param[in] argc Nmber of arguments in argv vector (ignored). 97 * @param[in] argv Cmdline argument vector (ignored). 98 * @return Error code. 99 * 100 * Driver debug level is set here. 101 */ 90 102 int main(int argc, char *argv[]) 91 103 {
Note:
See TracChangeset
for help on using the changeset viewer.