diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2020-09-15 14:09:01 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2020-09-17 14:16:19 +0200 |
commit | 9927a6329a4ce832b4b529903b0a1e1f580cbf0f (patch) | |
tree | c4739246b3399b10641dea3f2f5ea84348a7d618 /include/hw/i386/x86.h | |
parent | f6f7e2d88d0b29d8b6e1a12a5f3f9f31faff9846 (diff) |
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
Diffstat (limited to 'include/hw/i386/x86.h')
-rw-r--r-- | include/hw/i386/x86.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/i386/x86.h b/include/hw/i386/x86.h index 1a188a7dea..25c904638c 100644 --- a/include/hw/i386/x86.h +++ b/include/hw/i386/x86.h @@ -100,8 +100,8 @@ void x86_load_linux(X86MachineState *x86ms, bool pvh_enabled, bool linuxboot_dma_enabled); -bool x86_machine_is_smm_enabled(X86MachineState *x86ms); -bool x86_machine_is_acpi_enabled(X86MachineState *x86ms); +bool x86_machine_is_smm_enabled(const X86MachineState *x86ms); +bool x86_machine_is_acpi_enabled(const X86MachineState *x86ms); /* Global System Interrupts */ |