diff options
author | kib <kib@FreeBSD.org> | 2015-02-18 10:51:48 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2015-02-18 10:51:48 +0000 |
commit | ce948ff36c59b8aa85333501ae4b12de0dfa4aa7 (patch) | |
tree | 971ac1a790fc721d6c16ddaf645b0a1f5aa44ed1 | |
parent | ad9c64dbbaa0599696039a5b055ac9717de9cc58 (diff) | |
download | FreeBSD-src-ce948ff36c59b8aa85333501ae4b12de0dfa4aa7.zip FreeBSD-src-ce948ff36c59b8aa85333501ae4b12de0dfa4aa7.tar.gz |
Fix UP build.
Sponsored by: The FreeBSD Foundation
MFC after: 2 months
-rw-r--r-- | sys/x86/acpica/acpi_wakeup.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/x86/acpica/acpi_wakeup.c b/sys/x86/acpica/acpi_wakeup.c index e652419..70c8d6b 100644 --- a/sys/x86/acpica/acpi_wakeup.c +++ b/sys/x86/acpica/acpi_wakeup.c @@ -55,8 +55,9 @@ __FBSDID("$FreeBSD$"); #include <machine/specialreg.h> #include <machine/md_var.h> -#ifdef SMP #include <x86/apicreg.h> +#include <x86/apicvar.h> +#ifdef SMP #include <machine/smp.h> #include <machine/vmparam.h> #endif |