mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

The first KSZ8 series implementation was done for a KSZ8795 device but since several other KSZ8 devices have been added. Rename these files to adhere to the ksz8 naming convention as already used in most functions and the existing ksz8.h; add an explanatory note. Signed-off-by: Pieter Van Trappen <pieter.van.trappen@cern.ch> Acked-by: Arun Ramadoss <arun.ramadoss@microchip.com> Signed-off-by: David S. Miller <davem@davemloft.net>
14 lines
516 B
Makefile
14 lines
516 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
obj-$(CONFIG_NET_DSA_MICROCHIP_KSZ_COMMON) += ksz_switch.o
|
|
ksz_switch-objs := ksz_common.o ksz_dcb.o
|
|
ksz_switch-objs += ksz9477.o ksz9477_acl.o ksz9477_tc_flower.o
|
|
ksz_switch-objs += ksz8.o
|
|
ksz_switch-objs += lan937x_main.o
|
|
|
|
ifdef CONFIG_NET_DSA_MICROCHIP_KSZ_PTP
|
|
ksz_switch-objs += ksz_ptp.o
|
|
endif
|
|
|
|
obj-$(CONFIG_NET_DSA_MICROCHIP_KSZ9477_I2C) += ksz9477_i2c.o
|
|
obj-$(CONFIG_NET_DSA_MICROCHIP_KSZ_SPI) += ksz_spi.o
|
|
obj-$(CONFIG_NET_DSA_MICROCHIP_KSZ8863_SMI) += ksz8863_smi.o
|