From: Jakub Kicinski Date: Fri, 20 Jan 2023 17:50:39 +0000 (-0800) Subject: net: fou: rename the source for linking X-Git-Tag: v6.3-rc1~162^2~217^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=08d323234d10;p=thirdparty%2Flinux.git net: fou: rename the source for linking We'll need to link two objects together to form the fou module. This means the source can't be called fou, the build system expects fou.o to be the combined object. Acked-by: Stanislav Fomichev Signed-off-by: Jakub Kicinski Signed-off-by: Paolo Abeni --- diff --git a/net/ipv4/Makefile b/net/ipv4/Makefile index af7d2cf490fbd..fabbe46897cee 100644 --- a/net/ipv4/Makefile +++ b/net/ipv4/Makefile @@ -26,6 +26,7 @@ obj-$(CONFIG_IP_MROUTE) += ipmr.o obj-$(CONFIG_IP_MROUTE_COMMON) += ipmr_base.o obj-$(CONFIG_NET_IPIP) += ipip.o gre-y := gre_demux.o +fou-y := fou_core.o obj-$(CONFIG_NET_FOU) += fou.o obj-$(CONFIG_NET_IPGRE_DEMUX) += gre.o obj-$(CONFIG_NET_IPGRE) += ip_gre.o diff --git a/net/ipv4/fou.c b/net/ipv4/fou_core.c similarity index 100% rename from net/ipv4/fou.c rename to net/ipv4/fou_core.c