summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorGustavo Romero <gustavo.romero@linaro.org>2025-05-04 21:56:35 +0000
committerMichael Tokarev <mjt@tls.msk.ru>2025-05-09 23:49:26 +0300
commita917fd7a930115ac09e9680b51776252234697ac (patch)
tree4d52eea33bae9ffdabb95ff5bfdf489dfc4d6e10
parent947c2b6d8bacb9cc2bcc2f54cb7367753f761a71 (diff)
downloadfocaccia-qemu-a917fd7a930115ac09e9680b51776252234697ac.tar.gz
focaccia-qemu-a917fd7a930115ac09e9680b51776252234697ac.zip
hw/i386/acpi-build: Fix typo and grammar in comment
Fix typo and verb conjugation in a comment about FADT initialization.

Signed-off-by: Gustavo Romero <gustavo.romero@linaro.org>
Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
-rw-r--r--hw/i386/acpi-build.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i386/acpi-build.c b/hw/i386/acpi-build.c
index 3fffa4a332..b5836417a0 100644
--- a/hw/i386/acpi-build.c
+++ b/hw/i386/acpi-build.c
@@ -139,7 +139,7 @@ static void init_common_fadt_data(MachineState *ms, Object *o,
     /*
      * "ICH9-LPC" or "PIIX4_PM" has "smm-compat" property to keep the old
      * behavior for compatibility irrelevant to smm_enabled, which doesn't
-     * comforms to ACPI spec.
+     * conform to the ACPI spec.
      */
     bool smm_enabled = object_property_get_bool(o, "smm-compat", NULL) ?
         true : x86_machine_is_smm_enabled(x86ms);