diff options
Diffstat (limited to 'src/arch')
-rw-r--r-- | src/arch/mips/include/arch/memlayout.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/mips/include/arch/memlayout.h b/src/arch/mips/include/arch/memlayout.h index 4cbbe1d02b..0b30338fbf 100644 --- a/src/arch/mips/include/arch/memlayout.h +++ b/src/arch/mips/include/arch/memlayout.h @@ -26,6 +26,6 @@ /* TODO: Double-check that that's the correct alignment for our ABI. */ #define STACK(addr, size) REGION(stack, addr, size, 8) -/* TODO: Need to add DMA_COHERENT region like on ARM? */ +#define DMA_COHERENT(addr, size) REGION(dma_coherent, addr, size, 4K) #endif /* __ARCH_MEMLAYOUT_H */ |