63368a7416
Early generations of the mv88e6xxx did not have the global 2 registers. In order to keep the driver slim, it was decided to make the code for these registers optional. Over time, more generations of switches have been added, always supporting global 2 and adding more and more registers. No effort has been made to keep these additional registers also optional to slim the driver down when used for older generations. Optional global 2 now just gives additional development and maintenance burden for no real gain. Make global 2 support always compiled in. Signed-off-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Reviewed-by: Vladimir Oltean <olteanv@gmail.com> Tested-by: Vladimir Oltean <olteanv@gmail.com> Link: https://lore.kernel.org/r/20210127003210.663173-1-andrew@lunn.ch Signed-off-by: Jakub Kicinski <kuba@kernel.org>
18 lines
562 B
Makefile
18 lines
562 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
obj-$(CONFIG_NET_DSA_MV88E6XXX) += mv88e6xxx.o
|
|
mv88e6xxx-objs := chip.o
|
|
mv88e6xxx-objs += devlink.o
|
|
mv88e6xxx-objs += global1.o
|
|
mv88e6xxx-objs += global1_atu.o
|
|
mv88e6xxx-objs += global1_vtu.o
|
|
mv88e6xxx-objs += global2.o
|
|
mv88e6xxx-objs += global2_avb.o
|
|
mv88e6xxx-objs += global2_scratch.o
|
|
mv88e6xxx-$(CONFIG_NET_DSA_MV88E6XXX_PTP) += hwtstamp.o
|
|
mv88e6xxx-objs += phy.o
|
|
mv88e6xxx-objs += port.o
|
|
mv88e6xxx-objs += port_hidden.o
|
|
mv88e6xxx-$(CONFIG_NET_DSA_MV88E6XXX_PTP) += ptp.o
|
|
mv88e6xxx-objs += serdes.o
|
|
mv88e6xxx-objs += smi.o
|