diff options
author | 2016-01-09 11:00:01 +0000 | |
---|---|---|
committer | 2016-01-09 11:00:01 +0000 | |
commit | 71508f949b5abbc834427ee8a32ea5dbda67a353 (patch) | |
tree | 96dae4b02503be27948874217643c7111b9f8377 | |
parent | Rename LR_24BIT, LR_32BIT and LR_32BITFIXED to LR_MEM24, LR_MEM32 and (diff) | |
download | wireguard-openbsd-71508f949b5abbc834427ee8a32ea5dbda67a353.tar.xz wireguard-openbsd-71508f949b5abbc834427ee8a32ea5dbda67a353.zip |
Add HW_REDUCED_ACPI and LOW_POWER_S0_IDLE_CAPABLE FADT flags.
-rw-r--r-- | sys/dev/acpi/acpireg.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/acpi/acpireg.h b/sys/dev/acpi/acpireg.h index 839a954a859..0048cf9c4d7 100644 --- a/sys/dev/acpi/acpireg.h +++ b/sys/dev/acpi/acpireg.h @@ -1,4 +1,4 @@ -/* $OpenBSD: acpireg.h,v 1.30 2015/01/15 01:19:28 jsg Exp $ */ +/* $OpenBSD: acpireg.h,v 1.31 2016/01/09 11:00:01 kettenis Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> @@ -172,6 +172,8 @@ struct acpi_fadt { #define FADT_REMOTE_POWER_ON_CAPABLE 0x00020000 #define FADT_FORCE_APIC_CLUSTER_MODEL 0x00040000 #define FADT_FORCE_APIC_PHYS_DEST_MODE 0x00080000 +#define FADT_HW_REDUCED_ACPI 0x00100000 +#define FADT_POWER_S0_IDLE_CAPABLE 0x00200000 /* * Following values only exist when rev > 1 * If the extended addresses exists, they |