From: Lad Prabhakar Date: Fri, 1 Sep 2023 10:51:11 +0000 (+0100) Subject: riscv: Kconfig: Select DMA_DIRECT_REMAP only if MMU is enabled X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e7ddd00eb3752b109e24eee19cb6b7421059d4db;p=linux.git riscv: Kconfig: Select DMA_DIRECT_REMAP only if MMU is enabled kernel/dma/mapping.c has its use of pgprot_dmacoherent() inside an #ifdef CONFIG_MMU block. kernel/dma/pool.c has its use of pgprot_dmacoherent() inside an #ifdef CONFIG_DMA_DIRECT_REMAP block. So select DMA_DIRECT_REMAP only if MMU is enabled for RISCV_DMA_NONCOHERENT config. This avoids users to explicitly select MMU. Suggested-by: Geert Uytterhoeven Signed-off-by: Lad Prabhakar Link: https://lore.kernel.org/r/20230901105111.311200-1-prabhakar.mahadev-lad.rj@bp.renesas.com Signed-off-by: Palmer Dabbelt --- diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig index 712ae02691310..d607ab0f7c6da 100644 --- a/arch/riscv/Kconfig +++ b/arch/riscv/Kconfig @@ -273,7 +273,7 @@ config RISCV_DMA_NONCOHERENT select ARCH_HAS_SYNC_DMA_FOR_CPU select ARCH_HAS_SYNC_DMA_FOR_DEVICE select DMA_BOUNCE_UNALIGNED_KMALLOC if SWIOTLB - select DMA_DIRECT_REMAP + select DMA_DIRECT_REMAP if MMU config RISCV_NONSTANDARD_CACHE_OPS bool