From tomek@koprowski.org Sun Feb 19 09:01:51 2006 From: Tomek Koprowski (by way of Tomek Koprowski ) Date: Sun, 19 Feb 2006 18:03:24 +0100 To: gregkh@suse.de Subject: PCI: SMBus unhide on HP Compaq nx6110 Message-Id: <200602191803.24639.tomek@koprowski.org> 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 --- drivers/pci/quirks.c | 6 ++++++ 1 file changed, 6 insertions(+) --- gregkh-2.6.orig/drivers/pci/quirks.c +++ gregkh-2.6/drivers/pci/quirks.c @@ -934,6 +934,12 @@ static void __init asus_hides_smbus_host 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) {