diff options
author | Sven Schnelle <svens@stackframe.org> | 2019-12-15 22:10:39 +0300 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2019-12-15 23:05:38 +0300 |
commit | e16260c21f87b16a33ae8ecac9e8c79f3a8b89bd (patch) | |
tree | d9bd27a064d77e6a5ef1f28d3ad8ec2e7c5ebb6d /arch/parisc/kernel | |
parent | e42617b825f8073569da76dc4510bfa019b1c35a (diff) | |
download | linux-e16260c21f87b16a33ae8ecac9e8c79f3a8b89bd.tar.xz |
parisc: fix compilation when KEXEC=n and KEXEC_FILE=y
Fix compilation when the CONFIG_KEXEC_FILE=y and
CONFIG_KEXEC=n.
Reported-by: kbuild test robot <lkp@intel.com>
Signed-off-by: Sven Schnelle <svens@stackframe.org>
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'arch/parisc/kernel')
-rw-r--r-- | arch/parisc/kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/parisc/kernel/Makefile b/arch/parisc/kernel/Makefile index 2663c8f8be11..068d90950d93 100644 --- a/arch/parisc/kernel/Makefile +++ b/arch/parisc/kernel/Makefile @@ -37,5 +37,5 @@ obj-$(CONFIG_FUNCTION_GRAPH_TRACER) += ftrace.o obj-$(CONFIG_JUMP_LABEL) += jump_label.o obj-$(CONFIG_KGDB) += kgdb.o obj-$(CONFIG_KPROBES) += kprobes.o -obj-$(CONFIG_KEXEC) += kexec.o relocate_kernel.o +obj-$(CONFIG_KEXEC_CORE) += kexec.o relocate_kernel.o obj-$(CONFIG_KEXEC_FILE) += kexec_file.o |