diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-12-21 11:33:22 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-12-21 11:33:22 +0000 |
commit | c4fd2adacae9774ac0f21588f6d393d96edaf5e3 (patch) | |
tree | 181d81371fbd9d26dc520c21c83fa52d95af6f7d /sys/dev/acpi/acpiec.c | |
parent | 8b253d20c3587616798d92367e20f3e9b148d70d (diff) |
spacing
Diffstat (limited to 'sys/dev/acpi/acpiec.c')
-rw-r--r-- | sys/dev/acpi/acpiec.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/acpi/acpiec.c b/sys/dev/acpi/acpiec.c index 719eb433d12..7599a20c83f 100644 --- a/sys/dev/acpi/acpiec.c +++ b/sys/dev/acpi/acpiec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpiec.c,v 1.13 2006/12/21 05:53:35 marco Exp $ */ +/* $OpenBSD: acpiec.c,v 1.14 2006/12/21 11:33:21 deraadt Exp $ */ /* * Copyright (c) 2006 Can Erkin Acar <canacar@openbsd.org> * @@ -55,7 +55,7 @@ void acpiec_sci_event(struct acpiec_softc *); void acpiec_get_events(struct acpiec_softc *); -int acpiec_gpehandler(struct acpi_softc *, int, void *); +int acpiec_gpehandler(struct acpi_softc *, int, void *); struct aml_node *aml_find_name(struct acpi_softc *, struct aml_node *, const char *); @@ -63,7 +63,7 @@ struct aml_node *aml_find_name(struct acpi_softc *, struct aml_node *, /* 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 */ +#define EC_STAT_BURST 0x10 /* Controller in burst mode */ #define EC_STAT_CMD 0x08 /* data is command */ #define EC_STAT_IBF 0x02 /* input buffer full */ #define EC_STAT_OBF 0x01 /* output buffer full */ @@ -97,7 +97,7 @@ struct acpiec_softc { struct acpi_softc *sc_acpi; struct aml_node *sc_devnode; u_int32_t sc_gpe; - struct acpiec_event sc_events[ACPIEC_MAX_EVENTS]; + struct acpiec_event sc_events[ACPIEC_MAX_EVENTS]; int sc_locked; int sc_handling_events; }; @@ -488,7 +488,7 @@ acpiec_getcrs(struct acpiec_softc *sc, struct acpi_attach_args *aa) return (1); } - return (0); + return (0); } int |