summaryrefslogtreecommitdiff
path: root/arch/riscv
diff options
context:
space:
mode:
authorAlexandre Ghiti <alexghiti@rivosinc.com>2023-12-13 23:30:00 +0300
committerPalmer Dabbelt <palmer@rivosinc.com>2023-12-20 21:48:14 +0300
commitd6508999d1882ddd0db8b3b4bd7967d83e9909fa (patch)
treecefca01f63cecc6f332bd3727528eddcace2e64d /arch/riscv
parenteba2591d99d1f14a04c8a8a845ab0795b93f5646 (diff)
downloadlinux-d6508999d1882ddd0db8b3b4bd7967d83e9909fa.tar.xz
riscv: mm: Only compile pgtable.c if MMU
All functions defined in there depend on MMU, so no need to compile it for !MMU configs. Signed-off-by: Alexandre Ghiti <alexghiti@rivosinc.com> Link: https://lore.kernel.org/r/20231213203001.179237-4-alexghiti@rivosinc.com Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
Diffstat (limited to 'arch/riscv')
-rw-r--r--arch/riscv/mm/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/riscv/mm/Makefile b/arch/riscv/mm/Makefile
index 3a4dfc8babcf..2c869f8026a8 100644
--- a/arch/riscv/mm/Makefile
+++ b/arch/riscv/mm/Makefile
@@ -13,10 +13,9 @@ endif
KCOV_INSTRUMENT_init.o := n
obj-y += init.o
-obj-$(CONFIG_MMU) += extable.o fault.o pageattr.o
+obj-$(CONFIG_MMU) += extable.o fault.o pageattr.o pgtable.o
obj-y += cacheflush.o
obj-y += context.o
-obj-y += pgtable.o
obj-y += pmem.o
ifeq ($(CONFIG_MMU),y)