Changes in uspace/drv/ehci-hcd/main.c [0d3167e:0969e45e] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/ehci-hcd/main.c
r0d3167e 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> … … 57 58 }; 58 59 /*----------------------------------------------------------------------------*/ 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 */64 60 static int ehci_add_device(ddf_dev_t *device) 65 61 { … … 92 88 } 93 89 /*----------------------------------------------------------------------------*/ 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 */102 90 int main(int argc, char *argv[]) 103 91 {
Note:
See TracChangeset
for help on using the changeset viewer.