diff options
author | Mark Brown <broonie@sirena.org.uk> | 2007-02-25 15:37:27 +0000 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-02-27 04:30:43 -0500 |
commit | 36c843d5e347ec71ec579a477c941538a03b8cf3 (patch) | |
tree | 5851e66114d6fe899508c5239e533366c6022e62 /drivers/net/natsemi.c | |
parent | b882addd7aecbdae7b938fa189f0459d0713976b (diff) | |
download | linux-stable-36c843d5e347ec71ec579a477c941538a03b8cf3.tar.gz linux-stable-36c843d5e347ec71ec579a477c941538a03b8cf3.tar.bz2 linux-stable-36c843d5e347ec71ec579a477c941538a03b8cf3.zip |
natsemi: Fix detection of vanilla natsemi cards
Bob Tracy <rct@gherkin.frus.com> reported that the addition of support
for Aculab E1/T1 cPCI carrier cards broke detection of vanilla natsemi
cards. This patch fixes that: the problem is that the driver-specific
ta in the PCI device table is an index into a second table and this
had not been updated for the vanilla cards.
This patch fixes the problem minimally.
Signed-Off-By: Mark Brown <broonie@sirena.org.uk>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/natsemi.c')
-rw-r--r-- | drivers/net/natsemi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/natsemi.c b/drivers/net/natsemi.c index adf29dd66798..5c57433cb306 100644 --- a/drivers/net/natsemi.c +++ b/drivers/net/natsemi.c @@ -260,7 +260,7 @@ static const struct { static const struct pci_device_id natsemi_pci_tbl[] __devinitdata = { { PCI_VENDOR_ID_NS, 0x0020, 0x12d9, 0x000c, 0, 0, 0 }, - { PCI_VENDOR_ID_NS, 0x0020, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, + { PCI_VENDOR_ID_NS, 0x0020, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 1 }, { } /* terminate list */ }; MODULE_DEVICE_TABLE(pci, natsemi_pci_tbl); |