aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorJoe Perches <joe@perches.com>2019-03-07 15:56:34 -0800
committerPalmer Dabbelt <palmer@sifive.com>2019-03-28 23:18:51 -0700
commitda4ed37873918eeb4e8db7f0cf55e0a7e18788c3 (patch)
tree8350ae0439b11d44c28808698f5dfe03be889387 /arch
parentRISC-V: Fix FIXMAP_TOP to avoid overlap with VMALLOC area (diff)
downloadlinux-dev-da4ed37873918eeb4e8db7f0cf55e0a7e18788c3.tar.xz
linux-dev-da4ed37873918eeb4e8db7f0cf55e0a7e18788c3.zip
RISC-V: Use IS_ENABLED(CONFIG_CMODEL_MEDLOW)
IS_ENABLED should generally use CONFIG_ prefaced symbols and it doesn't appear as if there is a CMODEL_MEDLOW define. Signed-off-by: Joe Perches <joe@perches.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Palmer Dabbelt <palmer@sifive.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/riscv/kernel/module.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/riscv/kernel/module.c b/arch/riscv/kernel/module.c
index 7dd308129b40..2872edce894d 100644
--- a/arch/riscv/kernel/module.c
+++ b/arch/riscv/kernel/module.c
@@ -141,7 +141,7 @@ static int apply_r_riscv_hi20_rela(struct module *me, u32 *location,
{
s32 hi20;
- if (IS_ENABLED(CMODEL_MEDLOW)) {
+ if (IS_ENABLED(CONFIG_CMODEL_MEDLOW)) {
pr_err(
"%s: target %016llx can not be addressed by the 32-bit offset from PC = %p\n",
me->name, (long long)v, location);