Changeset c8ca07e in mainline for uspace/drv/uhci/uhci.h


Ignore:
Timestamp:
2011-01-29T06:33:09Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
621fdaa
Parents:
44d8853 (diff), 76b57734 (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:

Fixed (from Vojta): Use alignment and size in proper order (memalign)

File:
1 edited

Legend:

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

    r44d8853 rc8ca07e  
    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.