summaryrefslogtreecommitdiff
path: root/sys/dev/acpi
diff options
context:
space:
mode:
authorMichael Knudsen <mk@cvs.openbsd.org>2006-12-12 17:59:10 +0000
committerMichael Knudsen <mk@cvs.openbsd.org>2006-12-12 17:59:10 +0000
commita4c09db288f9df3a932ec341037fcc2144099a11 (patch)
tree0ac29d5d3dfdb0b8c66b4f726eb05ab2f7ef4e36 /sys/dev/acpi
parent020b7b32cb0602cc333b2114a83f996259c0a876 (diff)
There is no acpiec_notify() function so don't supply a prototype.
While there, fix a typo. ok gwk
Diffstat (limited to 'sys/dev/acpi')
-rw-r--r--sys/dev/acpi/acpiec.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/acpi/acpiec.c b/sys/dev/acpi/acpiec.c
index 859c5ee029f..9e0ff4f0557 100644
--- a/sys/dev/acpi/acpiec.c
+++ b/sys/dev/acpi/acpiec.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: acpiec.c,v 1.9 2006/11/29 22:17:07 marco Exp $ */
+/* $OpenBSD: acpiec.c,v 1.10 2006/12/12 17:59:09 mk Exp $ */
/*
* Copyright (c) 2006 Can Erkin Acar <canacar@openbsd.org>
*
@@ -34,7 +34,6 @@
int acpiec_match(struct device *, void *, void *);
void acpiec_attach(struct device *, struct device *, void *);
-int acpiec_notify(struct aml_node *, int, void *);
u_int8_t acpiec_status(struct acpiec_softc *);
u_int8_t acpiec_read_data(struct acpiec_softc *);
@@ -62,7 +61,7 @@ int acpiec_gpehandler(struct acpi_softc *, int, void *);
struct aml_node *aml_find_name(struct acpi_softc *, struct aml_node *,
const char *);
-/* EC Staus bits */
+/* EC Status bits */
#define EC_STAT_SMI_EVT 0x40 /* SMI event pending */
#define EC_STAT_SCI_EVT 0x20 /* SCI event pending */
#define EC_STAT_BURST 0x10 /* Controller in burst mode */