diff mbox series

[PULL,07/19] hw/arm/sbsa-ref: Fixed cpu type error message typo.

Message ID 20211021152541.781175-8-richard.henderson@linaro.org
State Accepted
Commit b84722cf4455b44a98b5a527067001dee58ace10
Headers show
Series target/arm patch queue | expand

Commit Message

Richard Henderson Oct. 21, 2021, 3:25 p.m. UTC
From: Shuuichirou Ishii <ishii.shuuichir@fujitsu.com>


Signed-off-by: Shuuichirou Ishii <ishii.shuuichir@fujitsu.com>

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>

Reviewed-by: Yanan Wang <wangyanan55@huawei.com>

Message-Id: <20211008063604.670699-1-ishii.shuuichir@fujitsu.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

---
 hw/arm/sbsa-ref.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.25.1
diff mbox series

Patch

diff --git a/hw/arm/sbsa-ref.c b/hw/arm/sbsa-ref.c
index 509c5f09b4..358714bd3e 100644
--- a/hw/arm/sbsa-ref.c
+++ b/hw/arm/sbsa-ref.c
@@ -670,7 +670,7 @@  static void sbsa_ref_init(MachineState *machine)
     int n, sbsa_max_cpus;
 
     if (!cpu_type_valid(machine->cpu_type)) {
-        error_report("mach-virt: CPU type %s not supported", machine->cpu_type);
+        error_report("sbsa-ref: CPU type %s not supported", machine->cpu_type);
         exit(1);
     }