riscv: Consistify protect_kernel_linear_mapping_text_rodata() use
authorGeert Uytterhoeven <geert+renesas@glider.be>
Thu, 29 Apr 2021 15:10:04 +0000 (17:10 +0200)
committerPalmer Dabbelt <palmerdabbelt@google.com>
Thu, 6 May 2021 16:40:15 +0000 (09:40 -0700)
commit8d91b097335892bfbc9fd5783e80e25f0fb5bb2b
tree89b20f1deb2665fb4c8f91d58c2de524a7f1ed52
parent0e0d4992517fba81ecbceb5b71d2851f1208a02b
riscv: Consistify protect_kernel_linear_mapping_text_rodata() use

The various uses of protect_kernel_linear_mapping_text_rodata() are
not consistent:
  - Its definition depends on "64BIT && !XIP_KERNEL",
  - Its forward declaration depends on MMU,
  - Its single caller depends on "STRICT_KERNEL_RWX && 64BIT && MMU &&
    !XIP_KERNEL".

Fix this by settling on the dependencies of the caller, which can be
simplified as STRICT_KERNEL_RWX depends on "MMU && !XIP_KERNEL".
Provide a dummy definition, as the caller is protected by
"IS_ENABLED(CONFIG_STRICT_KERNEL_RWX)" instead of "#ifdef
CONFIG_STRICT_KERNEL_RWX".

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Tested-by: Alexandre Ghiti <alex@ghiti.fr>
Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
arch/riscv/include/asm/set_memory.h
arch/riscv/kernel/setup.c
arch/riscv/mm/init.c