1 #ifndef __ASMARM64_MMU_H_ 2 #define __ASMARM64_MMU_H_ 3 /* 4 * Copyright (C) 2014, Red Hat Inc, Andrew Jones <drjones@redhat.com> 5 * 6 * This work is licensed under the terms of the GNU LGPL, version 2. 7 */ 8 9 static inline bool mmu_enabled(void) 10 { 11 return false; 12 } 13 14 static inline void mmu_enable_idmap(void) 15 { 16 } 17 18 #endif /* __ASMARM64_MMU_H_ */ 19