Message ID | 1255287547-28329-2-git-send-email-gleb@redhat.com |
---|---|
State | Not Applicable |
Headers | show |
diff --git a/src/acpi.c b/src/acpi.c index 1ff2290..b7af66e 100644 --- a/src/acpi.c +++ b/src/acpi.c @@ -336,8 +336,8 @@ build_fadt(int bdf) fadt->plvl3_lat = cpu_to_le16(0xfff); // C3 state not supported fadt->gpe0_blk = cpu_to_le32(0xafe0); fadt->gpe0_blk_len = 4; - /* WBINVD + PROC_C1 + PWR_BUTTON + SLP_BUTTON + FIX_RTC */ - fadt->flags = cpu_to_le32((1 << 0) | (1 << 2) | (1 << 4) | (1 << 5) | (1 << 6)); + /* WBINVD + PROC_C1 + SLP_BUTTON + FIX_RTC */ + fadt->flags = cpu_to_le32((1 << 0) | (1 << 2) | (1 << 5) | (1 << 6)); build_header((void*)fadt, FACP_SIGNATURE, sizeof(*fadt), 1);
Qemu pcbios commit 4f5a9a84ff32e2445bf1c854e33b0b32f4459428 Signed-off-by: Gleb Natapov <gleb@redhat.com> --- src/acpi.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)