aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/stmmac/Makefile
diff options
context:
space:
mode:
authorGiuseppe CAVALLARO <peppe.cavallaro@st.com>2010-04-13 20:21:11 +0000
committerDavid S. Miller <davem@davemloft.net>2010-04-14 04:49:49 -0700
commit3c32be635c18ead00d460b7bdad1da52622ff40f (patch)
tree5a26fc20ebe0b826fc3deb66676b20897ac8e979 /drivers/net/stmmac/Makefile
parentipv4: ipmr: support multiple tables (diff)
downloadlinux-dev-3c32be635c18ead00d460b7bdad1da52622ff40f.tar.xz
linux-dev-3c32be635c18ead00d460b7bdad1da52622ff40f.zip
stmmac: split core and dma for the mac10/100
The patch splits core and dma parts for the mac10/100 device. This was already done for the GMAC device. It should make more flexible the driver to support other chips. Signed-off-by: Giuseppe Cavallaro <peppe.cavallaro@st.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/stmmac/Makefile')
-rw-r--r--drivers/net/stmmac/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/stmmac/Makefile b/drivers/net/stmmac/Makefile
index c776af15fe1a..b14bd563b1e2 100644
--- a/drivers/net/stmmac/Makefile
+++ b/drivers/net/stmmac/Makefile
@@ -2,4 +2,4 @@ obj-$(CONFIG_STMMAC_ETH) += stmmac.o
stmmac-$(CONFIG_STMMAC_TIMER) += stmmac_timer.o
stmmac-objs:= stmmac_main.o stmmac_ethtool.o stmmac_mdio.o \
dwmac_lib.o dwmac1000_core.o dwmac1000_dma.o \
- dwmac100.o $(stmmac-y)
+ dwmac100_core.o dwmac100_dma.o $(stmmac-y)