mirror of https://gitee.com/openkylin/qemu.git
x86: constify x86_machine_is_*_enabled
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Reviewed-by: Sergio Lopez <slp@redhat.com> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-id: 20200915120909.20838-14-kraxel@redhat.com
This commit is contained in:
parent
f6f7e2d88d
commit
9927a6329a
|
@ -821,7 +821,7 @@ void x86_bios_rom_init(MemoryRegion *rom_memory, bool isapc_ram_fw)
|
||||||
bios);
|
bios);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool x86_machine_is_smm_enabled(X86MachineState *x86ms)
|
bool x86_machine_is_smm_enabled(const X86MachineState *x86ms)
|
||||||
{
|
{
|
||||||
bool smm_available = false;
|
bool smm_available = false;
|
||||||
|
|
||||||
|
@ -863,7 +863,7 @@ static void x86_machine_set_smm(Object *obj, Visitor *v, const char *name,
|
||||||
visit_type_OnOffAuto(v, name, &x86ms->smm, errp);
|
visit_type_OnOffAuto(v, name, &x86ms->smm, errp);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool x86_machine_is_acpi_enabled(X86MachineState *x86ms)
|
bool x86_machine_is_acpi_enabled(const X86MachineState *x86ms)
|
||||||
{
|
{
|
||||||
if (x86ms->acpi == ON_OFF_AUTO_OFF) {
|
if (x86ms->acpi == ON_OFF_AUTO_OFF) {
|
||||||
return false;
|
return false;
|
||||||
|
|
|
@ -100,8 +100,8 @@ void x86_load_linux(X86MachineState *x86ms,
|
||||||
bool pvh_enabled,
|
bool pvh_enabled,
|
||||||
bool linuxboot_dma_enabled);
|
bool linuxboot_dma_enabled);
|
||||||
|
|
||||||
bool x86_machine_is_smm_enabled(X86MachineState *x86ms);
|
bool x86_machine_is_smm_enabled(const X86MachineState *x86ms);
|
||||||
bool x86_machine_is_acpi_enabled(X86MachineState *x86ms);
|
bool x86_machine_is_acpi_enabled(const X86MachineState *x86ms);
|
||||||
|
|
||||||
/* Global System Interrupts */
|
/* Global System Interrupts */
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue