From patchwork Fri Nov 20 21:29:08 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Corentin Chary X-Patchwork-Id: 61816 X-Patchwork-Delegate: lenb@kernel.org 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 nAKLVE30023783 for ; Fri, 20 Nov 2009 21:31:14 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756136AbZKTV27 (ORCPT ); Fri, 20 Nov 2009 16:28:59 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755801AbZKTV25 (ORCPT ); Fri, 20 Nov 2009 16:28:57 -0500 Received: from iksaif.net ([88.191.73.63]:39757 "EHLO iksaif.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756189AbZKTV24 (ORCPT ); Fri, 20 Nov 2009 16:28:56 -0500 Received: from localhost.localdomain (cxr69-11-88-180-139-205.fbx.proxad.net [88.180.139.205]) (Authenticated sender: corentincj@iksaif.net) by iksaif.net (Postfix) with ESMTPA id 22FFEC90028; Fri, 20 Nov 2009 22:30:06 +0100 (CET) From: Corentin Chary To: Len Brown Cc: linux acpi , Corentin Chary Subject: [PATCH] acpi/blacklist: enable OSI(Linux) on newer eeepc Date: Fri, 20 Nov 2009 22:29:08 +0100 Message-Id: <1258752548-9299-1-git-send-email-corentincj@iksaif.net> X-Mailer: git-send-email 1.6.5.2 Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org diff --git a/drivers/acpi/blacklist.c b/drivers/acpi/blacklist.c index e56b2a7..cd7015d 100644 --- a/drivers/acpi/blacklist.c +++ b/drivers/acpi/blacklist.c @@ -218,6 +218,27 @@ static struct dmi_system_id acpi_osi_dmi_table[] __initdata = { */ /* + * On newer Eeepc, the interface used by eeepc-laptop (ASUS010) + * is disabled without _OSI(Linux) + */ + { + .callback = dmi_enable_osi_linux, + .ident = "Asus Eeepc-1000H", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "1000H"), + }, + }, + { + .callback = dmi_enable_osi_linux, + .ident = "Asus Eeepc-1005HA", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer INC."), + DMI_MATCH(DMI_PRODUCT_NAME, "1005HA"), + }, + }, + + /* * Lenovo has a mix of systems OSI(Linux) situations * and thus we can not wildcard the vendor. *