mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
bfab27a146
This patch adds the PCI support (as EXPERIMENTAL) this has been also tested on XLINX XC2V3000 FF1152AMT0221 D1215994A VIRTEX FPGA board. To support the PCI bus the main part has been reworked and both the platform and the PCI specific parts have been moved into different files. Signed-off-by: Rayagond Kokatanur <rayagond@vayavyalabs.com> Signed-off-by: Giuseppe Cavallaro <peppe.cavallaro@st.com> Signed-off-by: David S. Miller <davem@davemloft.net>
11 lines
485 B
Makefile
11 lines
485 B
Makefile
obj-$(CONFIG_STMMAC_ETH) += stmmac.o
|
|
stmmac-$(CONFIG_STMMAC_TIMER) += stmmac_timer.o
|
|
stmmac-$(CONFIG_STMMAC_RING) += ring_mode.o
|
|
stmmac-$(CONFIG_STMMAC_CHAINED) += chain_mode.o
|
|
stmmac-$(CONFIG_STMMAC_PLATFORM) += stmmac_platform.o
|
|
stmmac-$(CONFIG_STMMAC_PCI) += stmmac_pci.o
|
|
stmmac-objs:= stmmac_main.o stmmac_ethtool.o stmmac_mdio.o \
|
|
dwmac_lib.o dwmac1000_core.o dwmac1000_dma.o \
|
|
dwmac100_core.o dwmac100_dma.o enh_desc.o norm_desc.o \
|
|
mmc_core.o $(stmmac-y)
|