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 /tests/bios-tables-test.c | |
| 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 'tests/bios-tables-test.c')
| -rw-r--r-- | tests/bios-tables-test.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/bios-tables-test.c b/tests/bios-tables-test.c index 9c96a67053..bdef3b9cee 100644 --- a/tests/bios-tables-test.c +++ b/tests/bios-tables-test.c @@ -175,8 +175,8 @@ static void test_acpi_fadt_table(test_data *data) ACPI_READ_FIELD(fadt_table->reset_value, addr); ACPI_READ_FIELD(fadt_table->arm_boot_flags, addr); ACPI_READ_FIELD(fadt_table->minor_revision, addr); - ACPI_READ_FIELD(fadt_table->Xfacs, addr); - ACPI_READ_FIELD(fadt_table->Xdsdt, addr); + ACPI_READ_FIELD(fadt_table->x_facs, addr); + ACPI_READ_FIELD(fadt_table->x_dsdt, addr); ACPI_READ_GENERIC_ADDRESS(fadt_table->xpm1a_event_block, addr); ACPI_READ_GENERIC_ADDRESS(fadt_table->xpm1b_event_block, addr); ACPI_READ_GENERIC_ADDRESS(fadt_table->xpm1a_control_block, addr); |
