Changeset 0a751aa in mainline for uspace/drv/bus/usb/ehci/hc.c


Ignore:
Timestamp:
2014-01-24T20:23:00Z (10 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
296fcce
Parents:
763dbcb
Message:

ehci: Enable async schedule.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ehci/hc.c

    r763dbcb r0a751aa  
    351351        EHCI_SET(instance->registers->configflag, USB_CONFIG_FLAG_FLAG);
    352352
     353        /* Enable Async schedule */
     354        assert((instance->async_list.list_head_pa & USB_ASYNCLIST_MASK) ==
     355            instance->async_list.list_head_pa);
     356        EHCI_WR(instance->registers->asynclistaddr,
     357            instance->async_list.list_head_pa);
     358        EHCI_SET(instance->registers->usbcmd, USB_CMD_ASYNC_SCHEDULE_FLAG);
    353359#if 0
    354360        /*
Note: See TracChangeset for help on using the changeset viewer.