lineage_kernel_xcoverpro/drivers/net/team/Makefile

12 lines
433 B
Makefile
Raw Permalink Normal View History

2023-06-18 22:53:49 +00:00
# SPDX-License-Identifier: GPL-2.0
#
# Makefile for the network team driver
#
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
obj-$(CONFIG_NET_TEAM_MODE_RANDOM) += team_mode_random.o
obj-$(CONFIG_NET_TEAM_MODE_ACTIVEBACKUP) += team_mode_activebackup.o
obj-$(CONFIG_NET_TEAM_MODE_LOADBALANCE) += team_mode_loadbalance.o