From: Lukas Bulwahn Date: Wed, 29 Dec 2021 11:15:53 +0000 (+0100) Subject: x86/build: Use the proper name CONFIG_FW_LOADER X-Git-Tag: v6.6.17~8547^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d6f12f83989bb356ac6880a954f62c7667e35066;p=platform%2Fkernel%2Flinux-rpi.git x86/build: Use the proper name CONFIG_FW_LOADER Commit in Fixes intends to add the expression regex only when FW_LOADER is enabled - not FW_LOADER_BUILTIN. Latter is a leftover from a previous patchset and not a valid config item. So, adjust the condition to the actual name of the config. [ bp: Cleanup commit message. ] Fixes: c8dcf655ec81 ("x86/build: Tuck away built-in firmware under FW_LOADER") Signed-off-by: Lukas Bulwahn Signed-off-by: Borislav Petkov Reviewed-by: Greg Kroah-Hartman Link: https://lore.kernel.org/r/20211229111553.5846-1-lukas.bulwahn@gmail.com --- diff --git a/arch/x86/tools/relocs.c b/arch/x86/tools/relocs.c index c736cf2..e2c5b29 100644 --- a/arch/x86/tools/relocs.c +++ b/arch/x86/tools/relocs.c @@ -68,7 +68,7 @@ static const char * const sym_regex_kernel[S_NSYMTYPES] = { "(__parainstructions|__alt_instructions)(_end)?|" "(__iommu_table|__apicdrivers|__smp_locks)(_end)?|" "__(start|end)_pci_.*|" -#if CONFIG_FW_LOADER_BUILTIN +#if CONFIG_FW_LOADER "__(start|end)_builtin_fw|" #endif "__(start|stop)___ksymtab(_gpl)?|"