Changes in uspace/drv/uhci-hcd/main.c [17ceb72:9351353] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/main.c
r17ceb72 r9351353 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 /** @addtogroup drvusbuhcihc28 /** @addtogroup usb 29 29 * @{ 30 30 */ 31 31 /** @file 32 * @brief UHCI driver initialization32 * @brief UHCI driver 33 33 */ 34 34 #include <ddf/driver.h> … … 55 55 }; 56 56 /*----------------------------------------------------------------------------*/ 57 /** Initialize a new ddf driver instance for uhci hc and hub.57 /** Initializes a new ddf driver instance for uhci hc and hub. 58 58 * 59 59 * @param[in] device DDF instance of the device to initialize. 60 60 * @return Error code. 61 * 62 * Gets and initialies hardware resources, disables any legacy support, 63 * and reports root hub device. 61 64 */ 62 65 int uhci_add_device(ddf_dev_t *device) … … 79 82 } 80 83 /*----------------------------------------------------------------------------*/ 81 /** Initialize global driver structures (NONE).84 /** Initializes global driver structures (NONE). 82 85 * 83 86 * @param[in] argc Nmber of arguments in argv vector (ignored). … … 89 92 int main(int argc, char *argv[]) 90 93 { 91 sleep(3); /* TODO: remove in final version */94 sleep(3); 92 95 usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME); 93 96
Note:
See TracChangeset
for help on using the changeset viewer.