Skip to content

Commit 35405f2

Browse files
seattleplusjbarnes993
authored andcommitted
PCI: Limit VPD length for Broadcom 5708S
BCM5706S wont work correctly unless VPD length truncated to 128 Signed-off-by: Dean Hildebrand <dhildeb@us.ibm.com> Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
1 parent 5a6c9b6 commit 35405f2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

drivers/pci/quirks.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1757,9 +1757,11 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_VIA, 0x324e, quirk_via_cx700_pci_parking_c
17571757
static void __devinit quirk_brcm_570x_limit_vpd(struct pci_dev *dev)
17581758
{
17591759
/*
1760-
* Only disable the VPD capability for 5706, 5708, 5708S and 5709 rev. A
1760+
* Only disable the VPD capability for 5706, 5706S, 5708,
1761+
* 5708S and 5709 rev. A
17611762
*/
17621763
if ((dev->device == PCI_DEVICE_ID_NX2_5706) ||
1764+
(dev->device == PCI_DEVICE_ID_NX2_5706S) ||
17631765
(dev->device == PCI_DEVICE_ID_NX2_5708) ||
17641766
(dev->device == PCI_DEVICE_ID_NX2_5708S) ||
17651767
((dev->device == PCI_DEVICE_ID_NX2_5709) &&

0 commit comments

Comments
 (0)