mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-15 22:36:34 +07:00
994da93d19
The purpose of this patch is to move platform specific mmu-xxx.h files in platform directories like pte-xxx.h files. In the meantime this patch creates common nohash and nohash/32 + nohash/64 mmu.h files for future common parts. Reviewed-by: Aneesh Kumar K.V <aneesh.kumar@linux.ibm.com> Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
12 lines
246 B
C
12 lines
246 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _ASM_POWERPC_NOHASH_MMU_H_
|
|
#define _ASM_POWERPC_NOHASH_MMU_H_
|
|
|
|
#ifdef CONFIG_PPC64
|
|
#include <asm/nohash/64/mmu.h>
|
|
#else
|
|
#include <asm/nohash/32/mmu.h>
|
|
#endif
|
|
|
|
#endif /* _ASM_POWERPC_NOHASH_MMU_H_ */
|