aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2021-09-11 18:26:51 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2021-09-13 16:52:06 +0000
commitceca8ac1ce47e1f87ba09463aa84eb1c879c37d9 (patch)
treecc21062d0d5c915af0d0a4972f64bf48d5e62620
parente99255c8a6cae324aeede7f5013d080a2d361e3f (diff)
downloadsrc-ceca8ac1ce47e1f87ba09463aa84eb1c879c37d9.tar.gz
src-ceca8ac1ce47e1f87ba09463aa84eb1c879c37d9.zip
x86 acpi_install_wakeup_handler(): style
Do not use tab between type and variable name in local declarations. Reviewed by: markj Sponsored by: The FreeBSD Foundation MFC after: 1 week Differential revision: https://reviews.freebsd.org/D31916
-rw-r--r--sys/x86/acpica/acpi_wakeup.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/x86/acpica/acpi_wakeup.c b/sys/x86/acpica/acpi_wakeup.c
index ef52ccc3aef6..17946ede45d0 100644
--- a/sys/x86/acpica/acpi_wakeup.c
+++ b/sys/x86/acpica/acpi_wakeup.c
@@ -423,12 +423,12 @@ freepages:
void
acpi_install_wakeup_handler(struct acpi_softc *sc)
{
- static void *wakeaddr;
- void *wakepages[ACPI_WAKEPAGES];
+ static void *wakeaddr;
+ void *wakepages[ACPI_WAKEPAGES];
#ifdef __amd64__
- uint64_t *pt5, *pt4, *pt3, *pt2;
- vm_paddr_t pt5pa, pt4pa, pt3pa, pt2pa;
- int i;
+ uint64_t *pt5, *pt4, *pt3, *pt2;
+ vm_paddr_t pt5pa, pt4pa, pt3pa, pt2pa;
+ int i;
#endif
if (wakeaddr != NULL)