forked from Minki/linux
d15891ca1f
STi series SOCs have a glue layer on top of the synopsis gmac IP, this glue layer needs to be configured before the gmac driver starts using the IP. This patch adds a support to this glue layer which is configured via stmmac setup, init, exit callbacks. Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@st.com> Signed-off-by: David S. Miller <davem@davemloft.net>
10 lines
489 B
Makefile
10 lines
489 B
Makefile
obj-$(CONFIG_STMMAC_ETH) += stmmac.o
|
|
stmmac-$(CONFIG_STMMAC_PLATFORM) += stmmac_platform.o
|
|
stmmac-$(CONFIG_STMMAC_PCI) += stmmac_pci.o
|
|
stmmac-$(CONFIG_DWMAC_SUNXI) += dwmac-sunxi.o
|
|
stmmac-$(CONFIG_DWMAC_STI) += dwmac-sti.o
|
|
stmmac-objs:= stmmac_main.o stmmac_ethtool.o stmmac_mdio.o ring_mode.o \
|
|
chain_mode.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_hwtstamp.o stmmac_ptp.o $(stmmac-y)
|