diff options
Diffstat (limited to 'include/xen/interface/platform.h')
-rw-r--r-- | include/xen/interface/platform.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/xen/interface/platform.h b/include/xen/interface/platform.h index c57d5f67f702..f1331e3e7271 100644 --- a/include/xen/interface/platform.h +++ b/include/xen/interface/platform.h | |||
@@ -152,10 +152,11 @@ DEFINE_GUEST_HANDLE_STRUCT(xenpf_firmware_info_t); | |||
152 | #define XENPF_enter_acpi_sleep 51 | 152 | #define XENPF_enter_acpi_sleep 51 |
153 | struct xenpf_enter_acpi_sleep { | 153 | struct xenpf_enter_acpi_sleep { |
154 | /* IN variables */ | 154 | /* IN variables */ |
155 | uint16_t pm1a_cnt_val; /* PM1a control value. */ | 155 | uint16_t val_a; /* PM1a control / sleep type A. */ |
156 | uint16_t pm1b_cnt_val; /* PM1b control value. */ | 156 | uint16_t val_b; /* PM1b control / sleep type B. */ |
157 | uint32_t sleep_state; /* Which state to enter (Sn). */ | 157 | uint32_t sleep_state; /* Which state to enter (Sn). */ |
158 | uint32_t flags; /* Must be zero. */ | 158 | #define XENPF_ACPI_SLEEP_EXTENDED 0x00000001 |
159 | uint32_t flags; /* XENPF_ACPI_SLEEP_*. */ | ||
159 | }; | 160 | }; |
160 | DEFINE_GUEST_HANDLE_STRUCT(xenpf_enter_acpi_sleep_t); | 161 | DEFINE_GUEST_HANDLE_STRUCT(xenpf_enter_acpi_sleep_t); |
161 | 162 | ||