]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
hw/arm/npcm7xx: remove setting of mp-affinity
authorDorjoy Chowdhury <dorjoychy111@gmail.com>
Thu, 23 May 2024 15:06:20 +0000 (16:06 +0100)
committerPeter Maydell <peter.maydell@linaro.org>
Tue, 28 May 2024 13:20:48 +0000 (14:20 +0100)
The value of the mp-affinity property being set in npcm7xx_realize is
always the same as the default value it would have when arm_cpu_realizefn
is called if the property is not set here. So there is no need to set
the property value in npcm7xx_realize function.

Signed-off-by: Dorjoy Chowdhury <dorjoychy111@gmail.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-id: 20240504141733.14813-1-dorjoychy111@gmail.com
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
hw/arm/npcm7xx.c

index 9f2d96c733af5c28df5a21a05da2cb6700d4fd8b..cb7791301b4a8fdbb501ca08bee138470f18ff10 100644 (file)
@@ -487,9 +487,6 @@ static void npcm7xx_realize(DeviceState *dev, Error **errp)
 
     /* CPUs */
     for (i = 0; i < nc->num_cpus; i++) {
-        object_property_set_int(OBJECT(&s->cpu[i]), "mp-affinity",
-                                arm_build_mp_affinity(i, NPCM7XX_MAX_NUM_CPUS),
-                                &error_abort);
         object_property_set_int(OBJECT(&s->cpu[i]), "reset-cbar",
                                 NPCM7XX_GIC_CPU_IF_ADDR, &error_abort);
         object_property_set_bool(OBJECT(&s->cpu[i]), "reset-hivecs", true,