diff options
author | Andrew Jones | 2017-01-09 12:40:21 +0100 |
---|---|---|
committer | Peter Maydell | 2017-01-09 12:40:21 +0100 |
commit | 8c92c6a43e3d0aabe5bb81e5fb709d2791e9c4c4 (patch) | |
tree | 87f6384ac35aa4a4f1c060dd023b5ac29f522b24 /include/hw/acpi | |
parent | hw/arm/virt-acpi-build: gtdt: improve flag naming (diff) | |
download | qemu-8c92c6a43e3d0aabe5bb81e5fb709d2791e9c4c4.tar.gz qemu-8c92c6a43e3d0aabe5bb81e5fb709d2791e9c4c4.tar.xz qemu-8c92c6a43e3d0aabe5bb81e5fb709d2791e9c4c4.zip |
hw/arm/virt-acpi-build: fadt: improve flag naming
Signed-off-by: Andrew Jones <drjones@redhat.com>
Message-id: 20170102200153.28864-5-drjones@redhat.com
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'include/hw/acpi')
-rw-r--r-- | include/hw/acpi/acpi-defs.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/hw/acpi/acpi-defs.h b/include/hw/acpi/acpi-defs.h index 8fe0996e15..d15b7e5cd3 100644 --- a/include/hw/acpi/acpi-defs.h +++ b/include/hw/acpi/acpi-defs.h @@ -191,10 +191,8 @@ struct AcpiFadtDescriptorRev5_1 { typedef struct AcpiFadtDescriptorRev5_1 AcpiFadtDescriptorRev5_1; -enum { - ACPI_FADT_ARM_USE_PSCI_G_0_2 = 0, - ACPI_FADT_ARM_PSCI_USE_HVC = 1, -}; +#define ACPI_FADT_ARM_PSCI_COMPLIANT (1 << 0) +#define ACPI_FADT_ARM_PSCI_USE_HVC (1 << 1) /* * Serial Port Console Redirection Table (SPCR), Rev. 1.02 |