Commit d5b02695 authored by ISHIKAWA Mutsumi's avatar ISHIKAWA Mutsumi Committed by Len Brown

sony-laptop: detect the ICH9 chipset as Type3

Signed-off-by: default avatarISHIKAWA Mutsumi <ishikawa@hanzubon.jp>
Signed-off-by: default avatarMattia Dongili <malattia@linux.it>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent 2b24ef09
...@@ -1824,6 +1824,13 @@ static void sony_pic_detect_device_type(struct sony_pic_dev *dev) ...@@ -1824,6 +1824,13 @@ static void sony_pic_detect_device_type(struct sony_pic_dev *dev)
goto out; 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 */ /* default */
dev->control = &spic_types[1]; dev->control = &spic_types[1];
......
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