Commit eb782fba authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

PCI: fix pci quirk for P4B533-V, fixes bug 1720

Thanks to stephanrave@gmx.de (Stephan Rave) for the patch.
parent 4b86aba4
...@@ -703,9 +703,12 @@ static void __init asus_hides_smbus_hostbridge(struct pci_dev *dev) ...@@ -703,9 +703,12 @@ static void __init asus_hides_smbus_hostbridge(struct pci_dev *dev)
case 0x8088: /* P4B533 */ case 0x8088: /* P4B533 */
asus_hides_smbus = 1; asus_hides_smbus = 1;
} }
if ((dev->device == PCI_DEVICE_ID_INTEL_82845G_HB) && if (dev->device == PCI_DEVICE_ID_INTEL_82845G_HB)
(dev->subsystem_device == 0x80b2)) /* P4PE */ switch(dev->subsystem_device) {
asus_hides_smbus = 1; case 0x80b2: /* P4PE */
case 0x8093: /* P4B533-V */
asus_hides_smbus = 1;
}
if ((dev->device == PCI_DEVICE_ID_INTEL_82850_HB) && if ((dev->device == PCI_DEVICE_ID_INTEL_82850_HB) &&
(dev->subsystem_device == 0x8030)) /* P4T533 */ (dev->subsystem_device == 0x8030)) /* P4T533 */
asus_hides_smbus = 1; asus_hides_smbus = 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment