Changes in uspace/drv/uhci/uhci.h [3da5eb9:096a1ff] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci/uhci.h

    r3da5eb9 r096a1ff  
    5656
    5757        uint16_t usbsts;
     58#define UHCI_STATUS_HALTED (1 << 5)
     59#define UHCI_STATUS_PROCESS_ERROR (1 << 4)
     60#define UHCI_STATUS_SYSTEM_ERROR (1 << 3)
     61#define UHCI_STATUS_RESUME (1 << 2)
     62#define UHCI_STATUS_ERROR_INTERRUPT (1 << 1)
     63#define UHCI_STATUS_INTERRUPT (1 << 0)
     64
    5865        uint16_t usbintr;
    5966        uint16_t frnum;
Note: See TracChangeset for help on using the changeset viewer.