Commit dd7f76b8 authored by Iacopo Spalletti's avatar Iacopo Spalletti Committed by Linus Torvalds

[PATCH] Add PCI-quirks for ASUS M6Ne notebook

Added M6Ne PCI IDs in asus_hides_smbus_hostbridge() function
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent a041464f
......@@ -772,6 +772,11 @@ static void __init asus_hides_smbus_hostbridge(struct pci_dev *dev)
case 0x1751: /* M2N notebook */
asus_hides_smbus = 1;
}
if (dev->device == PCI_DEVICE_ID_INTEL_82855PM_HB)
switch (dev->subsystem_device) {
case 0x186a: /* M6Ne notebook */
asus_hides_smbus = 1;
}
} else if (unlikely(dev->subsystem_vendor == PCI_VENDOR_ID_HP)) {
if (dev->device == PCI_DEVICE_ID_INTEL_82855PM_HB)
switch(dev->subsystem_device) {
......
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