diff options
Diffstat (limited to 'src/arch/arm')
-rw-r--r-- | src/arch/arm/include/arch/memlayout.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/arm/include/arch/memlayout.h b/src/arch/arm/include/arch/memlayout.h index 1395e82bc7..408443f1ba 100644 --- a/src/arch/arm/include/arch/memlayout.h +++ b/src/arch/arm/include/arch/memlayout.h @@ -20,7 +20,7 @@ /* ARM stacks need 8-byte alignment and stay in one place through ramstage. */ #define STACK(addr, size) \ REGION(stack, addr, size, 8) \ - _ = ASSERT(size >= 2K, "stack should be >= 2K, see toolchain.inc"); + _ = ASSERT(size >= 2K, "stack should be >= 2K, see toolchain.mk"); #define DMA_COHERENT(addr, size) \ REGION(dma_coherent, addr, size, SUPERPAGE_SIZE) \ |