mirror of https://gitee.com/openkylin/linux.git
19 lines
393 B
Makefile
19 lines
393 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-$(CONFIG_NET_DSA_SJA1105) += sja1105.o
|
|
|
|
sja1105-objs := \
|
|
sja1105_spi.o \
|
|
sja1105_main.o \
|
|
sja1105_ethtool.o \
|
|
sja1105_clocking.o \
|
|
sja1105_static_config.o \
|
|
sja1105_dynamic_config.o \
|
|
|
|
ifdef CONFIG_NET_DSA_SJA1105_PTP
|
|
sja1105-objs += sja1105_ptp.o
|
|
endif
|
|
|
|
ifdef CONFIG_NET_DSA_SJA1105_TAS
|
|
sja1105-objs += sja1105_tas.o
|
|
endif
|