summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHangbin Liu <liuhangbin@gmail.com>2024-04-01 11:10:02 +0800
committerJakub Kicinski <kuba@kernel.org>2024-04-02 18:24:32 -0700
commita0393e3e3ddbb177b25f0a978c72f5efe942fe7d (patch)
tree6326dd6ba356ab29f86b2da1bcac7316be18d07f
parent387724cbf4153aba141daa98f7e2a619de113840 (diff)
downloadlinux-a0393e3e3ddbb177b25f0a978c72f5efe942fe7d.tar.gz
linux-a0393e3e3ddbb177b25f0a978c72f5efe942fe7d.tar.bz2
linux-a0393e3e3ddbb177b25f0a978c72f5efe942fe7d.zip
net: team: rename team to team_core for linking
Similar with commit 08d323234d10 ("net: fou: rename the source for linking"), We'll need to link two objects together to form the team module. This means the source can't be called team, the build system expects team.o to be the combined object. Signed-off-by: Hangbin Liu <liuhangbin@gmail.com> Reviewed-by: Jiri Pirko <jiri@nvidia.com> Link: https://lore.kernel.org/r/20240401031004.1159713-3-liuhangbin@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
-rw-r--r--drivers/net/team/Makefile1
-rw-r--r--drivers/net/team/team_core.c (renamed from drivers/net/team/team.c)0
2 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/team/Makefile b/drivers/net/team/Makefile
index f582d81a5091..244db32c1060 100644
--- a/drivers/net/team/Makefile
+++ b/drivers/net/team/Makefile
@@ -3,6 +3,7 @@
# Makefile for the network team driver
#
+team-y:= team_core.o
obj-$(CONFIG_NET_TEAM) += team.o
obj-$(CONFIG_NET_TEAM_MODE_BROADCAST) += team_mode_broadcast.o
obj-$(CONFIG_NET_TEAM_MODE_ROUNDROBIN) += team_mode_roundrobin.o
diff --git a/drivers/net/team/team.c b/drivers/net/team/team_core.c
index 0a44bbdcfb7b..0a44bbdcfb7b 100644
--- a/drivers/net/team/team.c
+++ b/drivers/net/team/team_core.c