From: tomek@koprowski.org Date: Sun, 19 Feb 2006 17:03:24 +0000 (+0100) Subject: [PATCH] PCI: SMBus unhide on HP Compaq nx6110 X-Git-Tag: v2.6.17-rc1~998^2~24 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3c0a654e390d00fef9d8faed758f5e1e8078adb5;p=karo-tx-linux.git [PATCH] PCI: SMBus unhide on HP Compaq nx6110 I attach a trivial patch for 2.6.15.4 that unhides SMBus controller on an HP Compaq nx6110 notebook. Signed-off-by: Tomasz Koprowski Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 7ec9fc9a9a42..af4bc8e2cf83 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c @@ -934,6 +934,12 @@ static void __init asus_hides_smbus_hostbridge(struct pci_dev *dev) case 0x12bd: /* HP D530 */ asus_hides_smbus = 1; } + if (dev->device == PCI_DEVICE_ID_INTEL_82915GM_HB) { + switch (dev->subsystem_device) { + case 0x099c: /* HP Compaq nx6110 */ + asus_hides_smbus = 1; + } + } } else if (unlikely(dev->subsystem_vendor == PCI_VENDOR_ID_TOSHIBA)) { if (dev->device == PCI_DEVICE_ID_INTEL_82855GM_HB) switch(dev->subsystem_device) {