From patchwork Wed Apr 28 23:43:03 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kamal Mostafa X-Patchwork-Id: 95830 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter.kernel.org (8.14.3/8.14.3) with ESMTP id o3SNhBlP008874 for ; Wed, 28 Apr 2010 23:43:11 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755390Ab0D1XnJ (ORCPT ); Wed, 28 Apr 2010 19:43:09 -0400 Received: from adelie.canonical.com ([91.189.90.139]:53827 "EHLO adelie.canonical.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753816Ab0D1XnI (ORCPT ); Wed, 28 Apr 2010 19:43:08 -0400 Received: from hutte.canonical.com ([91.189.90.181]) by adelie.canonical.com with esmtp (Exim 4.69 #1 (Debian)) id 1O7GuH-000447-Pt; Thu, 29 Apr 2010 00:43:05 +0100 Received: from c-98-234-57-75.hsd1.ca.comcast.net ([98.234.57.75] helo=canonical.com) by hutte.canonical.com with esmtpsa (TLS-1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.69) (envelope-from ) id 1O7GuH-000570-7F; Thu, 29 Apr 2010 00:43:05 +0100 From: Kamal Mostafa To: linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] ACPI: sleep: init_set_sci_en_on_resume for Dell Studio 155x Date: Wed, 28 Apr 2010 16:43:03 -0700 Message-Id: <1272498183-6094-1-git-send-email-kamal@canonical.com> X-Mailer: git-send-email 1.7.0.4 To: Len Brown , "Rafael J. Wysocki" , Matthew Garrett , Jesse Barnes , Zhang Rui , linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org Sender: linux-acpi-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-acpi@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter.kernel.org [140.211.167.41]); Wed, 28 Apr 2010 23:43:11 +0000 (UTC) diff --git a/drivers/acpi/sleep.c b/drivers/acpi/sleep.c index f74834a..d907c8a 100644 --- a/drivers/acpi/sleep.c +++ b/drivers/acpi/sleep.c @@ -458,6 +458,30 @@ static struct dmi_system_id __initdata acpisleep_dmi_table[] = { DMI_MATCH(DMI_BOARD_NAME, "CF51-2L"), }, }, + { + .callback = init_set_sci_en_on_resume, + .ident = "Dell Studio 1558", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Studio 1558"), + }, + }, + { + .callback = init_set_sci_en_on_resume, + .ident = "Dell Studio 1557", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Studio 1557"), + }, + }, + { + .callback = init_set_sci_en_on_resume, + .ident = "Dell Studio 1555", + .matches = { + DMI_MATCH(DMI_SYS_VENDOR, "Dell Inc."), + DMI_MATCH(DMI_PRODUCT_NAME, "Studio 1555"), + }, + }, {}, }; #endif /* CONFIG_SUSPEND */