From owner-acpi-jp@jp.freebsd.org  Sun Jun  4 19:04:32 2000
Received: (from daemon@localhost)
	by castle.jp.freebsd.org (8.9.3+3.2W/8.7.3) id TAA24740;
	Sun, 4 Jun 2000 19:04:32 +0900 (JST)
	(envelope-from owner-acpi-jp@jp.FreeBSD.org)
Received: from tasogare.imasy.or.jp (daemon@tasogare.imasy.or.jp [202.227.24.5])
	by castle.jp.freebsd.org (8.9.3+3.2W/8.7.3) with ESMTP id TAA24735
	for <acpi-jp@jp.freebsd.org>; Sun, 4 Jun 2000 19:04:32 +0900 (JST)
	(envelope-from iwasaki@jp.FreeBSD.org)
Received: from localhost (isdnb33.imasy.or.jp [202.227.24.161])
	by tasogare.imasy.or.jp (8.10.1+3.3W/3.7W-tasogare/smtpfeed 1.04) with ESMTP id e54A4UP39056
	for <acpi-jp@jp.freebsd.org>; Sun, 4 Jun 2000 19:04:30 +0900 (JST)
	(envelope-from iwasaki@jp.FreeBSD.org)
To: acpi-jp@jp.freebsd.org
X-Mailer: Mew version 1.94.1 on Emacs 19.34 / Mule 2.3 (SUETSUMUHANA)
Mime-Version: 1.0
Content-Type: Text/Plain; charset=iso-2022-jp
Content-Transfer-Encoding: 7bit
Message-Id: <20000604190428E.iwasaki@jp.FreeBSD.org>
Date: Sun, 04 Jun 2000 19:04:28 +0900
From: Mitsuru IWASAKI <iwasaki@jp.freebsd.org>
X-Dispatcher: imput version 20000228(IM140)
Lines: 83
Reply-To: acpi-jp@jp.freebsd.org
Precedence: list
X-Distribute: distribute version 2.1 (Alpha) patchlevel 24e+000315
X-Sequence: acpi-jp 370
Subject: [acpi-jp 370] style fix: aml_amlmem.[ch]
Errors-To: owner-acpi-jp@jp.freebsd.org
Sender: owner-acpi-jp@jp.freebsd.org
X-Originator: iwasaki@jp.freebsd.org

$B$H$j$"$($:!":n6H$N=*$o$C$?$b$N$r%Q%C%A$r=g<!N.$7$F$$$-$^$9!#(B
$B2?$+5$IU$$$?$3$H$,$"$C$?$i%3%a%s%H$*4j$$$7$^$9!#(B
$BL@F|$NLk$"$?$j(B commit $BM=Dj$G$9!#(B

Index: aml_amlmem.c
===================================================================
RCS file: /home/cvs/ACPI/sys/i386/acpi/aml/aml_amlmem.c,v
retrieving revision 1.11
diff -u -r1.11 aml_amlmem.c
--- aml_amlmem.c	2000/06/03 14:32:57	1.11
+++ aml_amlmem.c	2000/06/04 08:43:35
@@ -31,7 +31,6 @@
  */
 
 #include <sys/param.h>
-#include <sys/types.h>
 
 #include <i386/acpi/aml/aml_env.h>
 #include <i386/acpi/aml/aml_memman.h>
@@ -59,7 +58,7 @@
 MEMMAN_INITIALSTORAGE_DESC(struct aml_local_stack, _aml_local_stack_storage);
 MEMMAN_INITIALSTORAGE_DESC(struct aml_mutex_queue, _aml_mutex_queue_storage);
 
-struct memman_blockman aml_blockman[] = {
+struct	memman_blockman aml_blockman[] = {
 	MEMMAN_MEMBLOCK_DESC(sizeof(struct aml_namestr), _aml_namestr_storage),
 	MEMMAN_MEMBLOCK_DESC(sizeof(struct aml_num), _aml_num_storage),
 	MEMMAN_MEMBLOCK_DESC(sizeof(struct aml_string), _aml_string_storage),
@@ -77,16 +76,16 @@
 	MEMMAN_MEMBLOCK_DESC(sizeof(struct aml_name), _aml_name_storage),
 	MEMMAN_MEMBLOCK_DESC(sizeof(struct aml_name_group), _aml_name_group_storage),
 	MEMMAN_MEMBLOCK_DESC(sizeof(struct aml_objref), _aml_objref_storage),
- 	MEMMAN_MEMBLOCK_DESC(sizeof(struct aml_regfield), _aml_regfield_storage),
+	MEMMAN_MEMBLOCK_DESC(sizeof(struct aml_regfield), _aml_regfield_storage),
 	MEMMAN_MEMBLOCK_DESC(sizeof(struct aml_environ), _aml_environ_storage),
 	MEMMAN_MEMBLOCK_DESC(sizeof(struct aml_local_stack), _aml_local_stack_storage),
 	MEMMAN_MEMBLOCK_DESC(sizeof(struct aml_mutex_queue), _aml_mutex_queue_storage),
 };
 
-struct memman_histogram aml_histogram[MEMMAN_HISTOGRAM_SIZE];
+struct	memman_histogram aml_histogram[MEMMAN_HISTOGRAM_SIZE];
 
-static struct memman _aml_memman = MEMMAN_MEMMANAGER_DESC(aml_blockman, 21,
-						     aml_histogram, 1);
+static struct	memman _aml_memman = MEMMAN_MEMMANAGER_DESC(aml_blockman, 21,
+    aml_histogram, 1);
 
-struct memman *aml_memman = &_aml_memman;
+struct	memman *aml_memman = &_aml_memman;
 
Index: aml_amlmem.h
===================================================================
RCS file: /home/cvs/ACPI/sys/i386/acpi/aml/aml_amlmem.h,v
retrieving revision 1.9
diff -u -r1.9 aml_amlmem.h
--- aml_amlmem.h	2000/06/02 07:15:10	1.9
+++ aml_amlmem.h	2000/06/04 08:59:22
@@ -26,13 +26,13 @@
  *	$Id: aml_amlmem.h,v 1.9 2000/06/02 07:15:10 yokoyama Exp $
  */
 
+#ifndef _AML_AMLMEM_H_
+#define _AML_AMLMEM_H_
+
 /*
  * AML Namespace Memory Management
  */
 
-#ifndef _AMLMEM_H_
-#define _AMLMEM_H_
-
 #include <i386/acpi/aml/aml_memman.h>
 
 enum {
@@ -59,6 +59,6 @@
 	memid_aml_mutex_queue,
 };
 
-extern struct memman	*aml_memman;
-#endif
+extern struct	memman	*aml_memman;
 
+#endif /* !_AML_AMLMEM_H_ */
