diff options
author | 2007-04-22 21:05:29 +0000 | |
---|---|---|
committer | 2007-04-22 21:05:29 +0000 | |
commit | ce7deb861c7e67601214af299bee47298e01f92d (patch) | |
tree | 5255dec1719e8127519ba4c5c2dd2cff5066f623 | |
parent | Remove unnecessary local variable in acpidock_status() and kill an XXX (diff) | |
download | wireguard-openbsd-ce7deb861c7e67601214af299bee47298e01f92d.tar.xz wireguard-openbsd-ce7deb861c7e67601214af299bee47298e01f92d.zip |
Whitespace cleanup.
-rw-r--r-- | sys/dev/acpi/acpidev.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/acpi/acpidev.h b/sys/dev/acpi/acpidev.h index 5f91459af96..67d10fbe652 100644 --- a/sys/dev/acpi/acpidev.h +++ b/sys/dev/acpi/acpidev.h @@ -1,4 +1,4 @@ -/* $OpenBSD: acpidev.h,v 1.22 2007/04/22 20:52:27 mk Exp $ */ +/* $OpenBSD: acpidev.h,v 1.23 2007/04/22 21:05:29 mk Exp $ */ /* * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> @@ -286,12 +286,12 @@ struct acpibat_softc { }; struct acpidock_softc { - struct device sc_dev; + struct device sc_dev; - bus_space_tag_t sc_iot; - bus_space_handle_t sc_ioh; + bus_space_tag_t sc_iot; + bus_space_handle_t sc_ioh; - struct acpi_softc *sc_acpi; + struct acpi_softc *sc_acpi; struct aml_node *sc_devnode; TAILQ_HEAD(, aml_nodelist) sc_deps_h; |