diff options
author | David S. Miller <davem@davemloft.net> | 2017-04-17 18:25:07 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-04-22 12:10:52 -0700 |
commit | 6b3d4eec7f34c21df80191bfd72657404dad0f0a (patch) | |
tree | 1c4c965f906db226dd298a719df6359cec2ea391 /arch/sparc/net/Makefile | |
parent | fb796707d7a6c9b24fdf80b9b4f24fa5ffcf0ec5 (diff) | |
download | linux-6b3d4eec7f34c21df80191bfd72657404dad0f0a.tar.gz linux-6b3d4eec7f34c21df80191bfd72657404dad0f0a.tar.bz2 linux-6b3d4eec7f34c21df80191bfd72657404dad0f0a.zip |
sparc: Split BPF JIT into 32-bit and 64-bit.
This is in preparation for adding the 64-bit eBPF JIT.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc/net/Makefile')
-rw-r--r-- | arch/sparc/net/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc/net/Makefile b/arch/sparc/net/Makefile index 1306a58ac541..76fa8e95b721 100644 --- a/arch/sparc/net/Makefile +++ b/arch/sparc/net/Makefile @@ -1,4 +1,4 @@ # # Arch-specific network modules # -obj-$(CONFIG_BPF_JIT) += bpf_jit_asm.o bpf_jit_comp.o +obj-$(CONFIG_BPF_JIT) += bpf_jit_asm_$(BITS).o bpf_jit_comp_$(BITS).o |