From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1758240AbYCZPeo (ORCPT ); Wed, 26 Mar 2008 11:34:44 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1757315AbYCZPeN (ORCPT ); Wed, 26 Mar 2008 11:34:13 -0400 Received: from hera.kernel.org ([140.211.167.34]:58281 "EHLO hera.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757228AbYCZPeL convert rfc822-to-8bit (ORCPT ); Wed, 26 Mar 2008 11:34:11 -0400 From: Len Brown Organization: Intel Open Source Technology Center To: Ingo Molnar , Corentin CHARY Subject: ISA -> ISA_ (Re: [GIT PATCH] ACPI patches for 2.6.25-rc6) Date: Wed, 26 Mar 2008 11:32:20 -0400 User-Agent: KMail/1.9.9 Cc: Bjorn Helgaas , Linus Torvalds , Andrew Morton , linux-acpi@vger.kernel.org, linux-kernel@vger.kernel.org, linux-pm@lists.linux-foundation.org References: <200803180510.47670.lenb@kernel.org> <20080326081653.GA8247@elte.hu> In-Reply-To: <20080326081653.GA8247@elte.hu> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Content-Disposition: inline Message-Id: <200803261132.21448.lenb@kernel.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > btw., saw this ACPI-ish commit in rc7: > > | commit b97d4803400a4442b0e4ae14d0bd8e83994b9004 > | Author: Bjorn Helgaas > | Date: Tue Mar 25 11:21:11 2008 -0600 > | > | ACPI: fix Medion _PRT quirk (use "ISA_", not "ISA") > > a grep shows that we've got one other case of an "ISA" string in the > ACPI code - is the patch below needed too? > > Ingo > > --------------------> > Subject: acpi: fix asus isa > From: Ingo Molnar > Date: Wed Mar 26 09:05:07 CET 2008 > > Signed-off-by: Ingo Molnar > --- > drivers/acpi/asus_acpi.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > Index: linux-x86.q/drivers/acpi/asus_acpi.c > =================================================================== > --- linux-x86.q.orig/drivers/acpi/asus_acpi.c > +++ linux-x86.q/drivers/acpi/asus_acpi.c > @@ -149,7 +149,7 @@ struct asus_hotk { > }; > > /* Here we go */ > -#define A1x_PREFIX "\\_SB.PCI0.ISA.EC0." > +#define A1x_PREFIX "\\_SB.PCI0.ISA_.EC0." >>From an AML point of view, ISA is just as legal as "ISA_" The NameString paramter to Device() can be 1 to 4 characters. So if this is correct or not depends on what the BIOS programmer for the Asus A1x choose to write. Perhaps Corentin 'Iksaif' CHARY can confirm if the driver is working properly on that system. -Len > #define L3C_PREFIX "\\_SB.PCI0.PX40.ECD0." > #define M1A_PREFIX "\\_SB.PCI0.PX40.EC0." > #define P30_PREFIX "\\_SB.PCI0.LPCB.EC0." >