Re: [PATCH] hw/arm/npcm7xx: remove setting of mp-affinity

2024-05-07 Thread Peter Maydell
On Sat, 4 May 2024 at 15:17, Dorjoy Chowdhury wrote: > > 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

Re: [PATCH] hw/arm/npcm7xx: remove setting of mp-affinity

2024-05-06 Thread Philippe Mathieu-Daudé
On 4/5/24 16:32, Richard Henderson wrote: On 5/4/24 07:17, Dorjoy Chowdhury wrote: 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

Re: [PATCH] hw/arm/npcm7xx: remove setting of mp-affinity

2024-05-04 Thread Richard Henderson
On 5/4/24 07:17, Dorjoy Chowdhury wrote: 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 func

[PATCH] hw/arm/npcm7xx: remove setting of mp-affinity

2024-05-04 Thread Dorjoy Chowdhury
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 ---