summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucas Stach <l.stach@pengutronix.de>2018-11-30 14:13:02 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2018-12-03 09:22:14 +0100
commit78eb1a49cbb2110cc8ec88970bcb65448d522847 (patch)
tree8c7a923cc507dd35549aa0b2cf653dc863b9c45b
parent7bd0eca21f25d6cbc1c0ca9971c3ff992dc721b9 (diff)
downloadbarebox-78eb1a49cbb2110cc8ec88970bcb65448d522847.tar.gz
barebox-78eb1a49cbb2110cc8ec88970bcb65448d522847.tar.xz
ARM: add prototype for mmu_early_disable
This is only provided by aarch64 for now and not actually used, but raher than deleting this potentially useful chunk of code, just provide the prototype to shut up the warning. Signed-off-by: Lucas Stach <l.stach@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--arch/arm/include/asm/mmu.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/include/asm/mmu.h b/arch/arm/include/asm/mmu.h
index 99833ac5b4..417808bfcc 100644
--- a/arch/arm/include/asm/mmu.h
+++ b/arch/arm/include/asm/mmu.h
@@ -56,5 +56,6 @@ void __dma_inv_range(unsigned long, unsigned long);
void mmu_early_enable(unsigned long membase, unsigned long memsize,
unsigned long ttb);
+void mmu_early_disable(void);
#endif /* __ASM_MMU_H */