summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/mmu.h
blob: 79ebc80d7d668bdfcacd2412739a5811585aa7a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#ifndef __ARM_MMU_H
#define __ARM_MMU_H

#ifdef CONFIG_MMU
void __mmu_cache_on(void);
void __mmu_cache_off(void);
void __mmu_cache_flush(void);
#else
static inline void __mmu_cache_on(void) {}
static inline void __mmu_cache_off(void) {}
static inline void __mmu_cache_flush(void) {}
#endif

#endif /* __ARM_MMU_H */