diff options
author | Michael S. Tsirkin <mst@redhat.com> | 2015-02-17 10:04:40 +0100 |
---|---|---|
committer | Michael S. Tsirkin <mst@redhat.com> | 2015-02-26 12:42:20 +0100 |
commit | 384fb32ea7984ed6e5fdcea0bbc3d5b01238806b (patch) | |
tree | 2e9527e6803fd8626dee16c3cc54cdaec195c879 /include/hw/i386/pc.h | |
parent | 42d859001d180ea788aa2d34a7be021ac8c447f2 (diff) |
acpi: has_immutable_rsdp->!rsdp_in_ram
As comment in acpi-build.c notes, RSDP is not really immutable. So it's
really a question of whether it's in RAM, name the variable accordingly.
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Diffstat (limited to 'include/hw/i386/pc.h')
-rw-r--r-- | include/hw/i386/pc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/i386/pc.h b/include/hw/i386/pc.h index 85cc86a74f..3b999668e2 100644 --- a/include/hw/i386/pc.h +++ b/include/hw/i386/pc.h @@ -104,7 +104,7 @@ struct PcGuestInfo { int legacy_acpi_table_size; bool has_acpi_build; bool has_reserved_memory; - bool has_immutable_rsdp; + bool rsdp_in_ram; }; /* parallel.c */ |