aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKrzysztof Hałasa <khc@pm.waw.pl>2010-08-02 19:03:29 -0400
committerDavid S. Miller <davem@davemloft.net>2010-08-02 19:03:29 -0400
commit9292d8f20ff3c034c99c2adfe27496957b3defe3 (patch)
treeb5d2df5bfdbf9aabf3ebcc4396c118306d1d3768
parent3f326d40994f922e0a3e468dd7fd9999eaf71574 (diff)
Tulip: don't initialize SBE xT3E3 WAN ports.
SBE 2T3E3 cards use DECchips 21143 but they need a different driver. Don't even try to use a normal tulip driver with them. Signed-off-by: Krzysztof Hałasa <khc@pm.waw.pl> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/tulip/tulip_core.c6
-rw-r--r--include/linux/pci_ids.h3
2 files changed, 9 insertions, 0 deletions
diff --git a/drivers/net/tulip/tulip_core.c b/drivers/net/tulip/tulip_core.c
index 14e5312e906e..3a8d7efa2acf 100644
--- a/drivers/net/tulip/tulip_core.c
+++ b/drivers/net/tulip/tulip_core.c
@@ -1341,6 +1341,12 @@ static int __devinit tulip_init_one (struct pci_dev *pdev,
1341 if (pdev->subsystem_vendor == PCI_VENDOR_ID_LMC) { 1341 if (pdev->subsystem_vendor == PCI_VENDOR_ID_LMC) {
1342 pr_err(PFX "skipping LMC card\n"); 1342 pr_err(PFX "skipping LMC card\n");
1343 return -ENODEV; 1343 return -ENODEV;
1344 } else if (pdev->subsystem_vendor == PCI_VENDOR_ID_SBE &&
1345 (pdev->subsystem_device == PCI_SUBDEVICE_ID_SBE_T3E3 ||
1346 pdev->subsystem_device == PCI_SUBDEVICE_ID_SBE_2T3E3_P0 ||
1347 pdev->subsystem_device == PCI_SUBDEVICE_ID_SBE_2T3E3_P1)) {
1348 pr_err(PFX "skipping SBE T3E3 port\n");
1349 return -ENODEV;
1344 } 1350 }
1345 1351
1346 /* 1352 /*
diff --git a/include/linux/pci_ids.h b/include/linux/pci_ids.h
index 9ac60dabb6ff..384c2a25db1f 100644
--- a/include/linux/pci_ids.h
+++ b/include/linux/pci_ids.h
@@ -1493,6 +1493,9 @@
1493#define PCI_DEVICE_ID_SBE_WANXL100 0x0301 1493#define PCI_DEVICE_ID_SBE_WANXL100 0x0301
1494#define PCI_DEVICE_ID_SBE_WANXL200 0x0302 1494#define PCI_DEVICE_ID_SBE_WANXL200 0x0302
1495#define PCI_DEVICE_ID_SBE_WANXL400 0x0104 1495#define PCI_DEVICE_ID_SBE_WANXL400 0x0104
1496#define PCI_SUBDEVICE_ID_SBE_T3E3 0x0009
1497#define PCI_SUBDEVICE_ID_SBE_2T3E3_P0 0x0901
1498#define PCI_SUBDEVICE_ID_SBE_2T3E3_P1 0x0902
1496 1499
1497#define PCI_VENDOR_ID_TOSHIBA 0x1179 1500#define PCI_VENDOR_ID_TOSHIBA 0x1179
1498#define PCI_DEVICE_ID_TOSHIBA_PICCOLO_1 0x0101 1501#define PCI_DEVICE_ID_TOSHIBA_PICCOLO_1 0x0101