mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix compilation.
Pointy hat to: me Sponsored by: The FreeBSD Foundation MFC after: 1 week
This commit is contained in:
parent
7705dd4df0
commit
28ebccd5fa
1 changed files with 2 additions and 1 deletions
|
|
@ -49,6 +49,7 @@ __FBSDID("$FreeBSD$");
|
|||
|
||||
#include <machine/bus.h>
|
||||
#if defined(__amd64__) || defined(__i386__)
|
||||
#include <contrib/dev/acpica/include/acpi.h>
|
||||
#include <machine/md_var.h>
|
||||
#endif
|
||||
|
||||
|
|
@ -1212,7 +1213,7 @@ vga_initialize(struct vt_device *vd, int textmode)
|
|||
static bool
|
||||
vga_acpi_disabled(void)
|
||||
{
|
||||
#if (defined(__amd64__) || defined(__i386__)
|
||||
#if defined(__amd64__) || defined(__i386__)
|
||||
uint16_t flags;
|
||||
int ignore;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue