Changes in / [44d8853:c8ca07e] in mainline


Ignore:
Location:
uspace/drv/uhci
Files:
2 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;
  • uspace/drv/uhci/utils/malloc32.h

    r44d8853 rc8ca07e  
    5353static inline void * malloc32(size_t size)
    5454/* TODO: this is ugly */
    55         { return memalign(size, 16); }
     55        { return memalign(16, size); }
    5656
    5757static inline void * get_page()
     
    6969
    7070static inline void * memalign32(size_t size, size_t alignment)
    71         { return memalign(size, alignment); }
     71        { return memalign(alignment, size); }
    7272
    7373static inline void free32(void * addr)
Note: See TracChangeset for help on using the changeset viewer.