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>
This commit is contained in:
Michael S. Tsirkin 2015-02-17 10:04:40 +01:00
parent 42d859001d
commit 384fb32ea7
4 changed files with 8 additions and 8 deletions

View file

@ -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 */