diff mbox series

[RFC] softmmu/vl: fix typo for PHASE_MACHINE_INITIALIZED

Message ID 20230413090310.1197548-1-alex.bennee@linaro.org
State New
Headers show
Series [RFC] softmmu/vl: fix typo for PHASE_MACHINE_INITIALIZED | expand

Commit Message

Alex Bennée April 13, 2023, 9:03 a.m. UTC
Otherwise people might get confused grepping for
MACHINE_PHASE_INITIALIZED and find nothing refers to it.

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
---
 softmmu/vl.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/softmmu/vl.c b/softmmu/vl.c
index ea20b23e4c..1b76fbb656 100644
--- a/softmmu/vl.c
+++ b/softmmu/vl.c
@@ -2509,7 +2509,7 @@  static void qemu_init_board(void)
     /* process plugin before CPUs are created, but once -smp has been parsed */
     qemu_plugin_load_list(&plugin_list, &error_fatal);
 
-    /* From here on we enter MACHINE_PHASE_INITIALIZED.  */
+    /* From here on we enter PHASE_MACHINE_INITIALIZED.  */
     machine_run_board_init(current_machine, mem_path, &error_fatal);
 
     drive_check_orphaned();