aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/net/Makefile
diff options
context:
space:
mode:
authorTiezhu Yang <yangtiezhu@loongson.cn>2021-10-11 09:19:09 +0800
committerDaniel Borkmann <daniel@iogearbox.net>2021-10-11 15:29:37 +0200
commit307d149d9435e5514268d6020d430245813d82cc (patch)
treec295acdbad77070a95fdb731ac74e745510a906d /arch/mips/net/Makefile
parentselftests/bpf: Skip verifier tests that fail to load with ENOTSUPP (diff)
downloadlinux-dev-307d149d9435e5514268d6020d430245813d82cc.tar.xz
linux-dev-307d149d9435e5514268d6020d430245813d82cc.zip
bpf, mips: Clean up config options about JIT
The config options MIPS_CBPF_JIT and MIPS_EBPF_JIT are useless, remove them in arch/mips/Kconfig, and then modify arch/mips/net/Makefile. Signed-off-by: Tiezhu Yang <yangtiezhu@loongson.cn> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Johan Almbladh <johan.almbladh@anyfinetworks.com> Link: https://lore.kernel.org/bpf/1633915150-13220-2-git-send-email-yangtiezhu@loongson.cn
Diffstat (limited to 'arch/mips/net/Makefile')
-rw-r--r--arch/mips/net/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/mips/net/Makefile b/arch/mips/net/Makefile
index 95e826781dbc..e3e6ae6514e8 100644
--- a/arch/mips/net/Makefile
+++ b/arch/mips/net/Makefile
@@ -1,10 +1,10 @@
# SPDX-License-Identifier: GPL-2.0-only
# MIPS networking code
-obj-$(CONFIG_MIPS_EBPF_JIT) += bpf_jit_comp.o
+obj-$(CONFIG_BPF_JIT) += bpf_jit_comp.o
ifeq ($(CONFIG_32BIT),y)
- obj-$(CONFIG_MIPS_EBPF_JIT) += bpf_jit_comp32.o
+ obj-$(CONFIG_BPF_JIT) += bpf_jit_comp32.o
else
- obj-$(CONFIG_MIPS_EBPF_JIT) += bpf_jit_comp64.o
+ obj-$(CONFIG_BPF_JIT) += bpf_jit_comp64.o
endif