diff options
author | Michael Chan <mchan@broadcom.com> | 2006-12-07 03:20:22 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-12-07 03:20:22 -0500 |
commit | 676917d488212303ce4a7d033815ce8799201010 (patch) | |
tree | b191b3b5859cb613b710b2ad1ff37c58fe3ccb5d /drivers/net/tg3.c | |
parent | 5d64ad34f468278ce66f9eb4d876dd221490e94c (diff) |
[TG3]: Add 5787F device ID.
Signed-off-by: Michael Chan <mchan@broadcom.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/tg3.c')
-rw-r--r-- | drivers/net/tg3.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/net/tg3.c b/drivers/net/tg3.c index e6561c1d85d6..5514828b7929 100644 --- a/drivers/net/tg3.c +++ b/drivers/net/tg3.c | |||
@@ -192,6 +192,7 @@ static struct pci_device_id tg3_pci_tbl[] = { | |||
192 | {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)}, | 192 | {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5786)}, |
193 | {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)}, | 193 | {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787)}, |
194 | {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)}, | 194 | {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787M)}, |
195 | {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5787F)}, | ||
195 | {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)}, | 196 | {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714)}, |
196 | {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)}, | 197 | {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5714S)}, |
197 | {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)}, | 198 | {PCI_DEVICE(PCI_VENDOR_ID_BROADCOM, PCI_DEVICE_ID_TIGON3_5715)}, |
@@ -10859,7 +10860,8 @@ static int __devinit tg3_get_invariants(struct tg3 *tp) | |||
10859 | tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) || | 10860 | tp->pdev->device == PCI_DEVICE_ID_TIGON3_5705F)) || |
10860 | (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM && | 10861 | (tp->pdev->vendor == PCI_VENDOR_ID_BROADCOM && |
10861 | (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F || | 10862 | (tp->pdev->device == PCI_DEVICE_ID_TIGON3_5751F || |
10862 | tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F)) || | 10863 | tp->pdev->device == PCI_DEVICE_ID_TIGON3_5753F || |
10864 | tp->pdev->device == PCI_DEVICE_ID_TIGON3_5787F)) || | ||
10863 | GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) | 10865 | GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_5906) |
10864 | tp->tg3_flags |= TG3_FLAG_10_100_ONLY; | 10866 | tp->tg3_flags |= TG3_FLAG_10_100_ONLY; |
10865 | 10867 | ||