Changeset 75732da in mainline for uspace/drv/uhci/main.c


Ignore:
Timestamp:
2010-12-13T07:20:20Z (13 years ago)
Author:
Vojtech Horky <vojtechhorky@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
309dea52
Parents:
84439d7 (diff), 37f7cfe (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.
Message:

Merge development/ changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci/main.c

    r84439d7 r75732da  
    2727 */
    2828#include <usb/hcdhubd.h>
     29#include <usb/debug.h>
    2930#include <errno.h>
     31#include <driver.h>
    3032#include "uhci.h"
    3133
     
    3638static int uhci_add_device(device_t *device)
    3739{
     40        usb_dprintf(NAME, 1, "uhci_add_device() called\n");
    3841        device->ops = &uhci_ops;
    3942
     
    4144         * We need to announce the presence of our root hub.
    4245         */
     46        usb_dprintf(NAME, 2, "adding root hub\n");
    4347        usb_hcd_add_root_hub(device);
    4448
     
    6165         */
    6266        sleep(5);
     67        usb_dprintf_enable(NAME, 5);
    6368
    6469        return driver_main(&uhci_driver);
Note: See TracChangeset for help on using the changeset viewer.