summaryrefslogtreecommitdiffstats
path: root/drivers
diff options
context:
space:
mode:
authorDean Hildebrand2008-08-08 02:31:45 +0200
committerJesse Barnes2008-08-08 02:47:37 +0200
commit35405f256de924be56ea5edaca4cdc627f1bb0f8 (patch)
treeff56a937897e2bc80bcd1040279881ef9cb2645f /drivers
parentPCI PM: Export pci_pme_active to drivers (diff)
downloadkernel-qcow2-linux-35405f256de924be56ea5edaca4cdc627f1bb0f8.tar.gz
kernel-qcow2-linux-35405f256de924be56ea5edaca4cdc627f1bb0f8.tar.xz
kernel-qcow2-linux-35405f256de924be56ea5edaca4cdc627f1bb0f8.zip
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>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/pci/quirks.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c
index 59667e562a74..9236e7f869c8 100644
--- a/drivers/pci/quirks.c
+++ b/drivers/pci/quirks.c
@@ -1757,9 +1757,11 @@ DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_VIA, 0x324e, quirk_via_cx700_pci_parking_c
static void __devinit quirk_brcm_570x_limit_vpd(struct pci_dev *dev)
{
/*
- * Only disable the VPD capability for 5706, 5708, 5708S and 5709 rev. A
+ * Only disable the VPD capability for 5706, 5706S, 5708,
+ * 5708S and 5709 rev. A
*/
if ((dev->device == PCI_DEVICE_ID_NX2_5706) ||
+ (dev->device == PCI_DEVICE_ID_NX2_5706S) ||
(dev->device == PCI_DEVICE_ID_NX2_5708) ||
(dev->device == PCI_DEVICE_ID_NX2_5708S) ||
((dev->device == PCI_DEVICE_ID_NX2_5709) &&