mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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
This commit is contained in:
parent
e99255c8a6
commit
ceca8ac1ce
1 changed files with 5 additions and 5 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue