summaryrefslogtreecommitdiffstats
path: root/src/include/rmodule.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/rmodule.h')
-rw-r--r--src/include/rmodule.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/rmodule.h b/src/include/rmodule.h
index 4a53daf8a453..bd202488a9ea 100644
--- a/src/include/rmodule.h
+++ b/src/include/rmodule.h
@@ -69,7 +69,7 @@ struct rmodule {
void *relocations;
};
-#if IS_ENABLED(CONFIG_RELOCATABLE_MODULES)
+#if CONFIG(RELOCATABLE_MODULES)
/* Rmodules have an entry point of named _start. */
#define RMODULE_ENTRY(entry_) \
void _start(void *) __attribute__((alias(STRINGIFY(entry_))))