saimaa: fix bool prop arg order
This commit is contained in:
+2
-2
@@ -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) */
|
||||
|
||||
Reference in New Issue
Block a user