Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ohci/utils/malloc32.h

    rf8dfb40 r5357620  
    4141#include <as.h>
    4242
    43 /* Generic TDs and EDs require 16byte alignment,
    44  * Isochronous TD require 32byte alignment,
    45  * buffers do not have to be aligned.
    46  */
    47 #define OHCI_ALIGN 32
    48 
    4943/** Get physical address translation
    5044 *
     
    6862 */
    6963static inline void * malloc32(size_t size)
    70         { return memalign(OHCI_ALIGN, size); }
     64        { return memalign(size, size); }
    7165/*----------------------------------------------------------------------------*/
    7266/** Physical mallocator simulator
Note: See TracChangeset for help on using the changeset viewer.