diff options
author | Giuseppe CAVALLARO <peppe.cavallaro@st.com> | 2010-04-13 20:21:11 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-04-14 04:49:49 -0700 |
commit | 3c32be635c18ead00d460b7bdad1da52622ff40f (patch) | |
tree | 5a26fc20ebe0b826fc3deb66676b20897ac8e979 /drivers/net/stmmac/Makefile | |
parent | f0ad0860d01e47a3ffd220564c5c653b3afbe962 (diff) | |
download | blackbird-op-linux-3c32be635c18ead00d460b7bdad1da52622ff40f.tar.gz blackbird-op-linux-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/Makefile | 2 |
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) |