From owner-acpi-jp@jp.FreeBSD.org Tue Dec 11 16:59:37 2001
Received: (from daemon@localhost)
	by castle2.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) id fBB7xb233627;
	Tue, 11 Dec 2001 16:59:37 +0900 (JST)
	(envelope-from owner-acpi-jp@jp.FreeBSD.org)
Received: from castle.jp.freebsd.org (castle.jp.FreeBSD.org [210.226.20.15])
	by castle2.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) with ESMTP/inet id fBB7xam33622
	for <acpi-jp@castle2.jp.freebsd.org>; Tue, 11 Dec 2001 16:59:36 +0900 (JST)
	(envelope-from iwasaki@jp.freebsd.org)
Received: from tasogare.imasy.or.jp (root@tasogare.imasy.or.jp [202.227.24.5])
	by castle.jp.freebsd.org (8.9.3+3.2W/8.7.3) with ESMTP id QAA68455
	for <acpi-jp@jp.FreeBSD.org>; Tue, 11 Dec 2001 16:59:36 +0900 (JST)
	(envelope-from iwasaki@jp.FreeBSD.org)
Received: from localhost (root@localhost [127.0.0.1])
	(authenticated as iwa with CRAM-MD5)
	by tasogare.imasy.or.jp (8.11.6+3.4W/8.11.6/tasogare) with ESMTP/inet id fBB7xWP41778
	for <acpi-jp@jp.FreeBSD.org>; Tue, 11 Dec 2001 16:59:33 +0900 (JST)
	(envelope-from iwasaki@jp.FreeBSD.org)
Date: Tue, 11 Dec 2001 16:59:21 +0900 (JST)
Message-Id: <20011211.165921.53330400.iwasaki@jp.FreeBSD.org>
To: acpi-jp@jp.FreeBSD.org
From: Mitsuru IWASAKI <iwasaki@jp.FreeBSD.org>
In-Reply-To: <200112110753.fBB7rQd40982@freefall.freebsd.org>
References: <200112110753.fBB7rQd40982@freefall.freebsd.org>
X-Mailer: Mew version 2.0 on Emacs 20.7 / Mule 4.0 (HANANOEN)
Mime-Version: 1.0
Content-Type: Text/Plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Reply-To: acpi-jp@jp.FreeBSD.org
Precedence: list
X-Distribute: distribute version 2.1 (Alpha) patchlevel 24e+010331
X-Sequence: acpi-jp 1534
Subject: [acpi-jp 1534] ACPICA 20011205 (Re: cvs commit: ports/devel/acpicatools Makefile
 distinfo)
Errors-To: owner-acpi-jp@jp.FreeBSD.org
Sender: owner-acpi-jp@jp.FreeBSD.org
X-Originator: iwasaki@jp.FreeBSD.org

Hi, I've just update my acpicatools port.

> iwasaki     2001/12/10 23:53:26 PST
> 
>   Modified files:
>     devel/acpicatools    Makefile distinfo 
>   Log:
>   Update for acpica-unix-20011205.

This is very stable, I needed only one patch but this is also not
big deal.  The patch for ACPICA attached.

Thanks

--- hwsleep.c.orig	Thu Dec  6 02:54:05 2001
+++ hwsleep.c	Mon Dec 10 17:05:25 2001
@@ -407,13 +407,13 @@
     /* Ignore any errors from these methods */
 
     Status = AcpiEvaluateObject (NULL, "\\_BFS", &ArgList, NULL);
-    if (!ACPI_SUCCESS (Status))
+    if (!ACPI_SUCCESS (Status) && Status != AE_NOT_FOUND)
     {
         REPORT_ERROR (("Method _BFS failed, %s\n", AcpiFormatException (Status)));
     }
 
     Status = AcpiEvaluateObject (NULL, "\\_WAK", &ArgList, NULL);
-    if (!ACPI_SUCCESS (Status))
+    if (!ACPI_SUCCESS (Status) && Status != AE_NOT_FOUND)
     {
         REPORT_ERROR (("Method _WAK failed, %s\n", AcpiFormatException (Status)));
     }
