summaryrefslogtreecommitdiff
path: root/sys/dev/acpi
diff options
context:
space:
mode:
authorMarco Peereboom <marco@cvs.openbsd.org>2006-03-09 04:41:12 +0000
committerMarco Peereboom <marco@cvs.openbsd.org>2006-03-09 04:41:12 +0000
commit019a147d92e71f98767545f90effda513d10f364 (patch)
tree5737e97836f5df09e024ea8d63ef2b58acf7d546 /sys/dev/acpi
parent6b9cfefc94cf638ec8aea57595d0839f49630728 (diff)
One more KNF nit.
Diffstat (limited to 'sys/dev/acpi')
-rw-r--r--sys/dev/acpi/acpidebug.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/sys/dev/acpi/acpidebug.c b/sys/dev/acpi/acpidebug.c
index 7d4063c6ae2..7a42f21cf1a 100644
--- a/sys/dev/acpi/acpidebug.c
+++ b/sys/dev/acpi/acpidebug.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: acpidebug.c,v 1.5 2006/03/09 03:52:19 marco Exp $ */
+/* $OpenBSD: acpidebug.c,v 1.6 2006/03/09 04:41:11 marco Exp $ */
/*
* Copyright (c) 2006 Marco Peereboom <marco@openbsd.org>
*
@@ -29,20 +29,20 @@
#include <dev/acpi/acpidebug.h>
#include <dev/acpi/dsdt.h>
+const char *db_aml_objtype(struct aml_value *);
+const char *db_aml_opname(int);
+const char *db_opregion(int);
+int db_aml_nodetype(struct aml_node *);
+int db_parse_name(void);
+struct aml_opcode *db_findem(int);
void db_aml_disasm(struct acpi_context *, int);
void db_aml_disint(struct acpi_context *, int, int);
void db_aml_disline(uint8_t *, int, const char *, ...);
void db_aml_dump(int, u_int8_t *);
-void db_aml_walktree(struct aml_node *);
void db_aml_shownode(struct aml_node *);
void db_aml_showvalue(struct aml_value *);
+void db_aml_walktree(struct aml_node *);
void db_spaceit(int);
-const char *db_aml_objtype(struct aml_value *);
-const char *db_aml_opname(int);
-const char *db_opregion(int);
-struct aml_opcode *db_findem(int);
-int db_aml_nodetype(struct aml_node *);
-int db_parse_name(void);
extern struct aml_node aml_root;