xref: /openbmc/linux/include/asm-generic/pgalloc.h (revision f79e4d5f92a129a1159c973735007d4ddc8541f3)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASM_GENERIC_PGALLOC_H
3 #define __ASM_GENERIC_PGALLOC_H
4 /*
5  * an empty file is enough for a nommu architecture
6  */
7 #ifdef CONFIG_MMU
8 #error need to implement an architecture specific asm/pgalloc.h
9 #endif
10 
11 #define check_pgt_cache()          do { } while (0)
12 
13 #endif /* __ASM_GENERIC_PGALLOC_H */
14