From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JU63P-0006F9-6q for qemu-devel@nongnu.org; Tue, 26 Feb 2008 15:05:31 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JU63M-0006Cq-TU for qemu-devel@nongnu.org; Tue, 26 Feb 2008 15:05:29 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JU63M-0006Cl-CI for qemu-devel@nongnu.org; Tue, 26 Feb 2008 15:05:28 -0500 Received: from mx1.redhat.com ([66.187.233.31]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JU63M-0001Ew-66 for qemu-devel@nongnu.org; Tue, 26 Feb 2008 15:05:28 -0500 From: Glauber Costa Date: Tue, 26 Feb 2008 16:56:35 -0300 Message-Id: <1204055805-32349-6-git-send-email-gcosta@redhat.com> In-Reply-To: <1204055805-32349-5-git-send-email-gcosta@redhat.com> References: <1204055805-32349-1-git-send-email-gcosta@redhat.com> <1204055805-32349-2-git-send-email-gcosta@redhat.com> <1204055805-32349-3-git-send-email-gcosta@redhat.com> <1204055805-32349-4-git-send-email-gcosta@redhat.com> <1204055805-32349-5-git-send-email-gcosta@redhat.com> Subject: [Qemu-devel] [PATCH 5/15] provide gpe _L0x methods Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: kvm-devel@lists.sourceforge.net Cc: marcelo@kvack.org, glommer@gmail.com, qemu-devel@nongnu.org, Glauber Costa , chrisw@sous-sol.org provide methods for gpe blk 0, even though they do nothing atm Signed-off-by: Glauber Costa --- bios/acpi-dsdt.dsl | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 51 insertions(+), 0 deletions(-) diff --git a/bios/acpi-dsdt.dsl b/bios/acpi-dsdt.dsl index 244e906..392d402 100755 --- a/bios/acpi-dsdt.dsl +++ b/bios/acpi-dsdt.dsl @@ -578,4 +578,55 @@ DefinitionBlock ( 0x00, // reserved 0x00, // reserved }) + Scope (\_GPE) + { + Method(_L00) { + Return(0x01) + } + Method(_L01) { + Return(0x01) + } + Method(_L02) { + Return(0x01) + } + Method(_L03) { + Return(0x01) + } + Method(_L04) { + Return(0x01) + } + Method(_L05) { + Return(0x01) + } + Method(_L06) { + Return(0x01) + } + Method(_L07) { + Return(0x01) + } + Method(_L08) { + Return(0x01) + } + Method(_L09) { + Return(0x01) + } + Method(_L0A) { + Return(0x01) + } + Method(_L0B) { + Return(0x01) + } + Method(_L0C) { + Return(0x01) + } + Method(_L0D) { + Return(0x01) + } + Method(_L0E) { + Return(0x01) + } + Method(_L0F) { + Return(0x01) + } + } } -- 1.4.2