From owner-acpi-jp@jp.FreeBSD.org Tue Oct  1 06:02:53 2002
Received: (from daemon@localhost)
	by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) id g8UL2rO93920;
	Tue, 1 Oct 2002 06:02:53 +0900 (JST)
	(envelope-from owner-acpi-jp@jp.FreeBSD.org)
Received: from petasus.ch.intel.com (petasus.ch.intel.com [143.182.124.5])
	by castle.jp.FreeBSD.org (8.11.6+3.4W/8.11.3) with ESMTP/inet id g8UL1T393794;
	Tue, 1 Oct 2002 06:01:30 +0900 (JST)
	(envelope-from robert.moore@intel.com)
Received: from fmsmsxvs043.fm.intel.com (fmsmsxvs043.fm.intel.com [132.233.42.129])
	by petasus.ch.intel.com (8.11.6/8.11.6/d: solo.mc,v 1.46 2002/09/23 20:41:22 dmccart Exp $) with SMTP id g8UL32h26678;
	Mon, 30 Sep 2002 21:03:03 GMT
Received: from fmsmsx019.fm.intel.com ([132.233.42.130])
 by fmsmsxvs043.fm.intel.com (NAVGW 2.5.2.11) with SMTP id M2002093013594530372
 ; Mon, 30 Sep 2002 13:59:45 -0700
Received: by fmsmsx019.fm.intel.com with Internet Mail Service (5.5.2653.19)
	id <TX7YT0RW>; Mon, 30 Sep 2002 14:01:22 -0700
Message-ID: <B9ECACBD6885D5119ADC00508B68C1EA0D19B7DF@orsmsx107.jf.intel.com>
From: "Moore, Robert" <robert.moore@intel.com>
To: "'Mitsuru IWASAKI'" <iwasaki@jp.FreeBSD.org>,
   "Moore, Robert"
	 <robert.moore@intel.com>,
   "Grover, Andrew" <andrew.grover@intel.com>
Cc: acpi-jp@jp.FreeBSD.org, kanaoka@ann.hi-ho.ne.jp
MIME-Version: 1.0
X-Mailer: Internet Mail Service (5.5.2653.19)
Content-Type: text/plain
Reply-To: acpi-jp@jp.FreeBSD.org
Precedence: list
Date: Mon, 30 Sep 2002 14:00:28 -0700
X-Sequence: acpi-jp 1854
Subject: [acpi-jp 1854] RE: [ACPI CA] typo(?) in dbstats.c
Errors-To: owner-acpi-jp@jp.FreeBSD.org
Sender: owner-acpi-jp@jp.FreeBSD.org
X-Originator: robert.moore@intel.com
X-Distribute: distribute version 2.1 (Alpha) patchlevel 24e+020902

Fixed and will appear in the next release.
Thanks,
Bob


-----Original Message-----
From: Mitsuru IWASAKI [mailto:iwasaki@jp.FreeBSD.org] 
Sent: Monday, September 30, 2002 11:11 AM
To: robert.moore@intel.com; andrew.grover@intel.com
Cc: acpi-jp@jp.FreeBSD.org; kanaoka@ann.hi-ho.ne.jp
Subject: [ACPI CA] typo(?) in dbstats.c

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
 
