diff options
author | Mats Erik Andersson <mats.andersson@gisladisker.se> | 2009-05-12 10:05:23 (GMT) |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-06-11 19:04:22 (GMT) |
commit | 4096ed0fc7c6ed83da44ab27ab7d1c7cd6e8e175 (patch) | |
tree | 6b3df9d0c8d4ed057e3fd1057eafca5edb34205c /drivers | |
parent | 43c16408842b0eeb367c23a6fa540ce69f99e347 (diff) | |
download | linux-fsl-qoriq-4096ed0fc7c6ed83da44ab27ab7d1c7cd6e8e175.tar.xz |
PCI: expose SMBus on Asus notebook A6L
Addition of one unknown subsystem identifier to the quirks handler for
chipset i82855GM_HB on notebook Asus A6L. This exposes the otherwise
hidden SMBus controller within the south bridge ICH4-M.
Signed-off-by: Mats Erik Andersson <mats.andersson@gisladisker.se>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/pci/quirks.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/pci/quirks.c b/drivers/pci/quirks.c index 3067673..a778c84 100644 --- a/drivers/pci/quirks.c +++ b/drivers/pci/quirks.c @@ -1133,6 +1133,7 @@ static void __init asus_hides_smbus_hostbridge(struct pci_dev *dev) switch (dev->subsystem_device) { case 0x1751: /* M2N notebook */ case 0x1821: /* M5N notebook */ + case 0x1897: /* A6L notebook */ asus_hides_smbus = 1; } else if (dev->device == PCI_DEVICE_ID_INTEL_82855PM_HB) |