From 60998e3ce3af7e052f0fe4e6238593b5e9a32b6a Mon Sep 17 00:00:00 2001 From: SashegDev Date: Mon, 7 Sep 2026 09:11:25 +0000 Subject: [PATCH] saimaa: fix bool prop arg order --- qemu/saimaa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qemu/saimaa.c b/qemu/saimaa.c index 1375587..b0e3dd2 100644 --- a/qemu/saimaa.c +++ b/qemu/saimaa.c @@ -134,10 +134,10 @@ static void saimaa_machine_init(MachineState *machine) Object *cpuobj = object_new("cortex-a7-" TYPE_ARM_CPU); object_property_set_int(cpuobj, "mp-affinity", i, &error_fatal); if (i > 0) { - object_property_set_bool(cpuobj, true, "start-powered-off", + object_property_set_bool(cpuobj, "start-powered-off", true, &error_fatal); } - object_property_set_bool(cpuobj, true, "realized", &error_fatal); + object_property_set_bool(cpuobj, "realized", true, &error_fatal); } /* GICv2 (minimal: dist + cpuif, IRQs wired later) */