From patchwork Mon Aug 17 23:27:34 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Mario Limonciello X-Patchwork-Id: 42210 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n7HNSKSQ018447 for ; Mon, 17 Aug 2009 23:28:21 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758390AbZHQX1b (ORCPT ); Mon, 17 Aug 2009 19:27:31 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932501AbZHQX0x (ORCPT ); Mon, 17 Aug 2009 19:26:53 -0400 Received: from ausxippc101.us.dell.com ([143.166.85.207]:55941 "EHLO ausxippc101.us.dell.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752383AbZHQX0v (ORCPT ); Mon, 17 Aug 2009 19:26:51 -0400 X-Loopcount0: from 10.9.160.253 Message-ID: <4A89E766.5040600@dell.com> Date: Mon, 17 Aug 2009 18:27:34 -0500 From: Mario Limonciello User-Agent: Thunderbird 2.0.0.22 (X11/20090804) MIME-Version: 1.0 To: cezary.jackiewicz@gmail.com CC: linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH 1/3] Add known supported Dell Mini series laptops to compal-laptop X-Enigmail-Version: 0.95.7 Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org This adds the system information as matched by DMI tables for laptops I've verified can work with compal-laptop. --- drivers/platform/x86/compal-laptop.c.old 2009-08-17 06:27:52.731786928 -0500 +++ drivers/platform/x86//compal-laptop.c 2009-08-17 06:29:31.199787056 -0500 @@ -311,6 +311,39 @@ }, .callback = dmi_check_cb }, + { + .ident = "Dell Mini 9", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 910"), + }, + .callback = dmi_check_cb + }, + { + .ident = "Dell Mini 10", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1010"), + }, + .callback = dmi_check_cb + }, + { + .ident = "Dell Mini 10v", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1011"), + }, + .callback = dmi_check_cb + }, + { + .ident = "Dell Inspiron 1010", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Inspiron 1110"), + }, + .callback = dmi_check_cb + }, + { } }; @@ -404,3 +437,7 @@ MODULE_ALIAS("dmi:*:rnIFL91:rvrIFT00:*"); MODULE_ALIAS("dmi:*:rnJFL92:rvrIFT00:*"); MODULE_ALIAS("dmi:*:rnIFT00:rvrIFT00:*"); +MODULE_ALIAS("dmi:*:svnDellInc.:pnInspiron910:*"); +MODULE_ALIAS("dmi:*:svnDellInc.:pnInspiron1010:*"); +MODULE_ALIAS("dmi:*:svnDellInc.:pnInspiron1011:*"); +MODULE_ALIAS("dmi:*:svnDellInc.:pnInspiron1110:*");