Changeset 2ef036a in mainline for uspace/drv/uhci-hcd/main.c
- Timestamp:
- 2011-03-14T22:51:09Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 2180979
- Parents:
- 7ffe82f (diff), fcf07e6 (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 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/uhci-hcd/main.c
r7ffe82f r2ef036a 26 26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 27 */ 28 /** @addtogroup usb28 /** @addtogroup drvusbuhcihc 29 29 * @{ 30 30 */ 31 31 /** @file 32 * @brief UHCI driver 32 * @brief UHCI driver initialization 33 33 */ 34 34 #include <ddf/driver.h> … … 55 55 }; 56 56 /*----------------------------------------------------------------------------*/ 57 /** Initialize sa new ddf driver instance for uhci hc and hub.57 /** Initialize 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.64 61 */ 65 62 int uhci_add_device(ddf_dev_t *device) … … 82 79 } 83 80 /*----------------------------------------------------------------------------*/ 84 /** Initialize sglobal driver structures (NONE).81 /** Initialize global driver structures (NONE). 85 82 * 86 83 * @param[in] argc Nmber of arguments in argv vector (ignored). … … 92 89 int main(int argc, char *argv[]) 93 90 { 94 sleep(3); 91 sleep(3); /* TODO: remove in final version */ 95 92 usb_log_enable(USB_LOG_LEVEL_DEBUG, NAME); 96 93
Note:
See TracChangeset
for help on using the changeset viewer.