Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 184315
b: refs/heads/master
c: b474eca
h: refs/heads/master
i:
  184313: f3843bb
  184311: 7dd20b4
v: v3
  • Loading branch information
Matt Carlson authored and David S. Miller committed Feb 18, 2010
1 parent 72d81ca commit 3cec7c2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 2712168f856e8cd42265e7ef855d64702da20089
refs/heads/master: b474eca74cf647df0a7fd56bc975ee4a812741b7
18 changes: 17 additions & 1 deletion trunk/drivers/net/tg3.c
Original file line number Diff line number Diff line change
Expand Up @@ -12659,8 +12659,24 @@ static void __devinit tg3_read_partno(struct tg3 *tp)
else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57780 &&
tp->pdev->device == TG3PCI_DEVICE_TIGON3_57788)
strcpy(tp->board_part_number, "BCM57788");
else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765)
else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
tp->pdev->device == TG3PCI_DEVICE_TIGON3_57761)
strcpy(tp->board_part_number, "BCM57761");
else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
tp->pdev->device == TG3PCI_DEVICE_TIGON3_57765)
strcpy(tp->board_part_number, "BCM57765");
else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
tp->pdev->device == TG3PCI_DEVICE_TIGON3_57781)
strcpy(tp->board_part_number, "BCM57781");
else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
tp->pdev->device == TG3PCI_DEVICE_TIGON3_57785)
strcpy(tp->board_part_number, "BCM57785");
else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
tp->pdev->device == TG3PCI_DEVICE_TIGON3_57791)
strcpy(tp->board_part_number, "BCM57791");
else if (GET_ASIC_REV(tp->pci_chip_rev_id) == ASIC_REV_57765 &&
tp->pdev->device == TG3PCI_DEVICE_TIGON3_57795)
strcpy(tp->board_part_number, "BCM57795");
else
strcpy(tp->board_part_number, "none");
}
Expand Down

0 comments on commit 3cec7c2

Please sign in to comment.