diff options
author | tomek@koprowski.org <tomek@koprowski.org> | 2006-02-19 12:03:24 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-03-23 17:35:13 -0500 |
commit | 3c0a654e390d00fef9d8faed758f5e1e8078adb5 (patch) | |
tree | d031b746ac92c3a272e31b3c32ea3f1cf368ffa4 /drivers/pci/quirks.c | |
parent | 50defa1ccaffc197a133d92acb48d696d5ea3539 (diff) |
[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 <tomek@koprowski.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/pci/quirks.c')
-rw-r--r-- | drivers/pci/quirks.c | 6 |
1 files changed, 6 insertions, 0 deletions
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) | |||
934 | case 0x12bd: /* HP D530 */ | 934 | case 0x12bd: /* HP D530 */ |
935 | asus_hides_smbus = 1; | 935 | asus_hides_smbus = 1; |
936 | } | 936 | } |
937 | if (dev->device == PCI_DEVICE_ID_INTEL_82915GM_HB) { | ||
938 | switch (dev->subsystem_device) { | ||
939 | case 0x099c: /* HP Compaq nx6110 */ | ||
940 | asus_hides_smbus = 1; | ||
941 | } | ||
942 | } | ||
937 | } else if (unlikely(dev->subsystem_vendor == PCI_VENDOR_ID_TOSHIBA)) { | 943 | } else if (unlikely(dev->subsystem_vendor == PCI_VENDOR_ID_TOSHIBA)) { |
938 | if (dev->device == PCI_DEVICE_ID_INTEL_82855GM_HB) | 944 | if (dev->device == PCI_DEVICE_ID_INTEL_82855GM_HB) |
939 | switch(dev->subsystem_device) { | 945 | switch(dev->subsystem_device) { |