diff options
author | Alessandro Rubini <rubini@gnudd.com> | 2012-01-23 23:08:56 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-01-24 15:44:20 -0500 |
commit | 5437f4b2576f1763a27bc4c0e7f7c280220ba1aa (patch) | |
tree | 45d273e5d2f12ff337597eb80e84bbd1d7ae32fb /drivers/net/ethernet/stmicro | |
parent | 56ac11cf2f21366ad48b356f7a0d1af8cff3588e (diff) | |
download | linux-3.10-5437f4b2576f1763a27bc4c0e7f7c280220ba1aa.tar.gz linux-3.10-5437f4b2576f1763a27bc4c0e7f7c280220ba1aa.tar.bz2 linux-3.10-5437f4b2576f1763a27bc4c0e7f7c280220ba1aa.zip |
stmmac: added PCI identifiers
STM has a device ID within its own VENDOR space, and it is being
used in the STA2X11 I/O Hub.
Signed-off-by: Alessandro Rubini <rubini@gnudd.com>
Acked-by: Giancarlo Asnaghi <giancarlo.asnaghi@st.com>
Acked-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/stmicro')
-rw-r--r-- | drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c b/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c index 54a819a3648..c796de9eed7 100644 --- a/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c +++ b/drivers/net/ethernet/stmicro/stmmac/stmmac_pci.c @@ -170,9 +170,9 @@ static int stmmac_pci_resume(struct pci_dev *pdev) #define STMMAC_DEVICE_ID 0x1108 static DEFINE_PCI_DEVICE_TABLE(stmmac_id_table) = { - { - PCI_DEVICE(STMMAC_VENDOR_ID, STMMAC_DEVICE_ID)}, { - } + {PCI_DEVICE(STMMAC_VENDOR_ID, STMMAC_DEVICE_ID)}, + {PCI_DEVICE(PCI_VENDOR_ID_STMICRO, PCI_DEVICE_ID_STMICRO_MAC)}, + {} }; MODULE_DEVICE_TABLE(pci, stmmac_id_table); |