diff options
author | Andrew Jones <drjones@redhat.com> | 2017-01-09 11:40:21 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2017-01-09 11:40:21 +0000 |
commit | 8c92c6a43e3d0aabe5bb81e5fb709d2791e9c4c4 (patch) | |
tree | 87f6384ac35aa4a4f1c060dd023b5ac29f522b24 /include/hw | |
parent | aca4bbf4a36fcaff6b7dbe45e2fc5bcb6b2dc4ab (diff) | |
download | qemu-8c92c6a43e3d0aabe5bb81e5fb709d2791e9c4c4.zip qemu-8c92c6a43e3d0aabe5bb81e5fb709d2791e9c4c4.tar.gz qemu-8c92c6a43e3d0aabe5bb81e5fb709d2791e9c4c4.tar.bz2 |
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')
-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 8fe0996..d15b7e5 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 |