mirror of
https://github.com/torvalds/linux.git
synced 2026-04-22 08:44:02 -04:00
Include and use the new FDMA header, which now provides the required masks and bit offsets for operating on the DCB's and DB's. Signed-off-by: Daniel Machon <daniel.machon@microchip.com> Reviewed-by: Steen Hegelund <Steen.Hegelund@microchip.com> Reviewed-by: Jens Emil Schulz Østergaard <jensemil.schulzostergaard@microchip.com> Reviewed-by: Horatiu Vultur <horatiu.vultur@microchip.com> Signed-off-by: David S. Miller <davem@davemloft.net>
22 lines
833 B
Makefile
22 lines
833 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for the Microchip Sparx5 network device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_SPARX5_SWITCH) += sparx5-switch.o
|
|
|
|
sparx5-switch-y := sparx5_main.o sparx5_packet.o \
|
|
sparx5_netdev.o sparx5_phylink.o sparx5_port.o sparx5_mactable.o sparx5_vlan.o \
|
|
sparx5_switchdev.o sparx5_calendar.o sparx5_ethtool.o sparx5_fdma.o \
|
|
sparx5_ptp.o sparx5_pgid.o sparx5_tc.o sparx5_qos.o \
|
|
sparx5_vcap_impl.o sparx5_vcap_ag_api.o sparx5_tc_flower.o \
|
|
sparx5_tc_matchall.o sparx5_pool.o sparx5_sdlb.o sparx5_police.o \
|
|
sparx5_psfp.o sparx5_mirror.o
|
|
|
|
sparx5-switch-$(CONFIG_SPARX5_DCB) += sparx5_dcb.o
|
|
sparx5-switch-$(CONFIG_DEBUG_FS) += sparx5_vcap_debugfs.o
|
|
|
|
# Provide include files
|
|
ccflags-y += -I$(srctree)/drivers/net/ethernet/microchip/vcap
|
|
ccflags-y += -I$(srctree)/drivers/net/ethernet/microchip/fdma
|