The patch titled sonypi: correct detection of new ICH7-based laptops has been added to the -mm tree. Its filename is sonypi-correct-detection-of-new-ich7-based-laptops.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this From: "Arnaud MAZIN" <arnaud.mazin@xxxxxxxxx> Add a test to detect the ICH7 based Core Duo SONY laptops (such as the SZ1) as type3 models. Signed-off-by: Arnaud MAZIN < arnaud.mazin@xxxxxxxxx> Acked-by: Stelian Pop <stelian@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/sonypi.c | 3 +++ 1 files changed, 3 insertions(+) diff -puN drivers/char/sonypi.c~sonypi-correct-detection-of-new-ich7-based-laptops drivers/char/sonypi.c --- devel/drivers/char/sonypi.c~sonypi-correct-detection-of-new-ich7-based-laptops 2006-04-19 23:59:05.000000000 -0700 +++ devel-akpm/drivers/char/sonypi.c 2006-04-20 00:00:14.000000000 -0700 @@ -1341,6 +1341,9 @@ static int __devinit sonypi_probe(struct else if ((pcidev = pci_get_device(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_ICH6_1, NULL))) sonypi_device.model = SONYPI_DEVICE_MODEL_TYPE3; + else if ((pcidev = pci_get_device(PCI_VENDOR_ID_INTEL, + PCI_DEVICE_ID_INTEL_ICH7_1, NULL))) + sonypi_device.model = SONYPI_DEVICE_MODEL_TYPE3; else sonypi_device.model = SONYPI_DEVICE_MODEL_TYPE2; _ Patches currently in -mm which might be from arnaud.mazin@xxxxxxxxx are sonypi-correct-detection-of-new-ich7-based-laptops.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html