From: ISHIKAWA Mutsumi <ishikawa@hanzubon.jp> Date: Thu, 26 Mar 2009 12:58:20 +0000 (+0900) Subject: sony-laptop: detect the ICH9 chipset as Type3 X-Git-Tag: MMI-PSA29.97-13-9~28767^2~13^2~9 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=d5b02695d5471b38064efeba2b102bd5ead55297;p=GitHub%2FMotorolaMobilityLLC%2Fkernel-slsi.git sony-laptop: detect the ICH9 chipset as Type3 Signed-off-by: ISHIKAWA Mutsumi <ishikawa@hanzubon.jp> Signed-off-by: Mattia Dongili <malattia@linux.it> Signed-off-by: Len Brown <len.brown@intel.com> --- diff --git a/drivers/platform/x86/sony-laptop.c b/drivers/platform/x86/sony-laptop.c index 813d0e03d9c5..5030f991906a 100644 --- a/drivers/platform/x86/sony-laptop.c +++ b/drivers/platform/x86/sony-laptop.c @@ -1824,6 +1824,13 @@ static void sony_pic_detect_device_type(struct sony_pic_dev *dev) goto out; } + pcidev = pci_get_device(PCI_VENDOR_ID_INTEL, + PCI_DEVICE_ID_INTEL_ICH9_1, NULL); + if (pcidev) { + dev->control = &spic_types[2]; + goto out; + } + /* default */ dev->control = &spic_types[1];