From owner-acpi-jp@jp.FreeBSD.org Tue Oct  1 03:12:09 2002
Received: (from daemon@localhost)
	by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) id g8UIC9h62346;
	Tue, 1 Oct 2002 03:12:09 +0900 (JST)
	(envelope-from owner-acpi-jp@jp.FreeBSD.org)
Received: from tasogare.imasy.or.jp (root@tasogare.imasy.or.jp [202.227.24.5])
	by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) with ESMTP/inet id g8UIC5362335
	for <acpi-jp@jp.FreeBSD.org>; Tue, 1 Oct 2002 03:12:06 +0900 (JST)
	(envelope-from iwasaki@jp.FreeBSD.org)
Received: from localhost (iwa@tasogare.imasy.or.jp [202.227.24.5])
	by tasogare.imasy.or.jp (8.11.6+3.4W/8.11.6/tasogare) with ESMTP/inet id g8UIBiY38342;
	Tue, 1 Oct 2002 03:11:45 +0900 (JST)
	(envelope-from iwasaki@jp.FreeBSD.org)
Message-Id: <20021001.031129.129345532.iwasaki@jp.FreeBSD.org>
To: robert.moore@intel.com, andrew.grover@intel.com
Cc: acpi-jp@jp.FreeBSD.org, kanaoka@ann.hi-ho.ne.jp
From: Mitsuru IWASAKI <iwasaki@jp.FreeBSD.org>
X-Mailer: Mew version 2.2 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
Date: Tue, 01 Oct 2002 03:11:29 +0900
X-Sequence: acpi-jp 1853
Subject: [acpi-jp 1853] [ACPI CA] typo(?) in dbstats.c
Errors-To: owner-acpi-jp@jp.FreeBSD.org
Sender: owner-acpi-jp@jp.FreeBSD.org
X-Originator: iwasaki@jp.FreeBSD.org
X-Distribute: distribute version 2.1 (Alpha) patchlevel 24e+020902

Hi, Intel folks.

I got a report from NetBSD guy that there is some typos in dbstats.c.
They had to make changes about #include lines to build kernel.

Point is that all .c files, except for dbstats.c, use
#include "xxx.h" style, not
#include <xxx.h> style.
I'm not sure whether there are some reasons only for dbstats.c...

Patch attached.
Thanks

Index: dbstats.c
===================================================================
RCS file: /home/ncvs/src/sys/contrib/dev/acpica/dbstats.c,v
retrieving revision 1.1.1.12
diff -u -r1.1.1.12 dbstats.c
--- dbstats.c	29 Aug 2002 01:51:15 -0000	1.1.1.12
+++ dbstats.c	30 Sep 2002 17:30:24 -0000
@@ -115,9 +115,9 @@
  *****************************************************************************/
 
 
-#include <acpi.h>
-#include <acdebug.h>
-#include <acnamesp.h>
+#include "acpi.h"
+#include "acdebug.h"
+#include "acnamesp.h"
 
 #ifdef ACPI_DEBUGGER
 
