Changes in / [c8ca07e:44d8853] in mainline


Ignore:
Location:
uspace/drv/uhci
Files:
2 edited

Legend:

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

    rc8ca07e r44d8853  
    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 
    6558        uint16_t usbintr;
    6659        uint16_t frnum;
  • uspace/drv/uhci/utils/malloc32.h

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