1
0
Fork 0

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>
hifive-unleashed-5.1
ISHIKAWA Mutsumi 2009-03-26 21:58:20 +09:00 committed by Len Brown
parent 2b24ef093a
commit d5b02695d5
1 changed files with 7 additions and 0 deletions

View File

@ -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];