Date: Mon, 13 Sep 2021 16:56:04 GMT From: Konstantin Belousov <kib@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: ceca8ac1ce47 - main - x86 acpi_install_wakeup_handler(): style Message-ID: <202109131656.18DGu43L018343@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by kib: URL: https://cgit.FreeBSD.org/src/commit/?id=ceca8ac1ce47e1f87ba09463aa84eb1c879c37d9 commit ceca8ac1ce47e1f87ba09463aa84eb1c879c37d9 Author: Konstantin Belousov <kib@FreeBSD.org> AuthorDate: 2021-09-11 18:26:51 +0000 Commit: Konstantin Belousov <kib@FreeBSD.org> CommitDate: 2021-09-13 16:52:06 +0000 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 --- sys/x86/acpica/acpi_wakeup.c | 10 +++++----- 1 file 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)
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202109131656.18DGu43L018343>