summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2019-01-11 09:07:19 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2019-01-11 09:07:19 -0800
commite8af37f3f488e7adce2b5c6f6dfe8c83c2662e1f (patch)
treed91849ad07efae053ed46efec47f077bdfb655f9 /scripts
parent8e1b295b693cbf2d8499c24fbb1f8f50c58771e3 (diff)
parente4f358916d528d479c3c12bd2fd03f2d5a576380 (diff)
downloadlinux-e8af37f3f488e7adce2b5c6f6dfe8c83c2662e1f.tar.gz
linux-e8af37f3f488e7adce2b5c6f6dfe8c83c2662e1f.tar.bz2
linux-e8af37f3f488e7adce2b5c6f6dfe8c83c2662e1f.zip
Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 fixes from Ingo Molnar: "A 32-bit build fix, CONFIG_RETPOLINE fixes and rename CONFIG_RESCTRL to CONFIG_X86_RESCTRL" * 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86, modpost: Replace last remnants of RETPOLINE with CONFIG_RETPOLINE x86/cache: Rename config option to CONFIG_X86_RESCTRL samples/seccomp: Fix 32-bit build
Diffstat (limited to 'scripts')
-rw-r--r--scripts/mod/modpost.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index 0de2fb236640..26bf886bd168 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -2185,7 +2185,7 @@ static void add_intree_flag(struct buffer *b, int is_intree)
/* Cannot check for assembler */
static void add_retpoline(struct buffer *b)
{
- buf_printf(b, "\n#ifdef RETPOLINE\n");
+ buf_printf(b, "\n#ifdef CONFIG_RETPOLINE\n");
buf_printf(b, "MODULE_INFO(retpoline, \"Y\");\n");
buf_printf(b, "#endif\n");
}