diff options
author | Ard Biesheuvel | 2017-04-10 17:03:49 +0200 |
---|---|---|
committer | Michael S. Tsirkin | 2017-05-10 21:04:23 +0200 |
commit | 5ee8534731645551a3883210b9a8d5741bb79df2 (patch) | |
tree | a39b15bc546d7bee906cbbce8395c916a568f111 /include/hw/acpi/acpi-defs.h | |
parent | Merge remote-tracking branch 'armbru/tags/pull-qapi-2017-05-04-v3' into staging (diff) | |
download | qemu-5ee8534731645551a3883210b9a8d5741bb79df2.tar.gz qemu-5ee8534731645551a3883210b9a8d5741bb79df2.tar.xz qemu-5ee8534731645551a3883210b9a8d5741bb79df2.zip |
hw/acpi-defs: replace leading X with x_ in FADT field names
At the request of Michael, replace the leading capital X in the FADT
field name Xfacs and Xdsdt with lower case x + underscore.
Cc: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Diffstat (limited to 'include/hw/acpi/acpi-defs.h')
-rw-r--r-- | include/hw/acpi/acpi-defs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/acpi/acpi-defs.h b/include/hw/acpi/acpi-defs.h index 293ee4524b..93e1ebad62 100644 --- a/include/hw/acpi/acpi-defs.h +++ b/include/hw/acpi/acpi-defs.h @@ -144,8 +144,8 @@ typedef struct AcpiTableHeader AcpiTableHeader; /* ARM-Specific Boot Flags (see below for individual flags) (ACPI 5.1) */ \ uint16_t arm_boot_flags; \ uint8_t minor_revision; /* FADT Minor Revision (ACPI 5.1) */ \ - uint64_t Xfacs; /* 64-bit physical address of FACS */ \ - uint64_t Xdsdt; /* 64-bit physical address of DSDT */ \ + uint64_t x_facs; /* 64-bit physical address of FACS */ \ + uint64_t x_dsdt; /* 64-bit physical address of DSDT */ \ /* 64-bit Extended Power Mgt 1a Event Reg Blk address */ \ struct AcpiGenericAddress xpm1a_event_block; \ /* 64-bit Extended Power Mgt 1b Event Reg Blk address */ \ |