[PATCH v2 02/11] target/sparc: Constify SPARCCPUClass::cpu_def

Philippe Mathieu-Daudé posted 11 patches 1 month, 3 weeks ago
There is a newer version of this series
[PATCH v2 02/11] target/sparc: Constify SPARCCPUClass::cpu_def
Posted by Philippe Mathieu-Daudé 1 month, 3 weeks ago
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
 target/sparc/cpu.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/target/sparc/cpu.h b/target/sparc/cpu.h
index dda811503b5..462bcb6c0e6 100644
--- a/target/sparc/cpu.h
+++ b/target/sparc/cpu.h
@@ -574,7 +574,7 @@ struct SPARCCPUClass {
 
     DeviceRealize parent_realize;
     ResettablePhases parent_phases;
-    sparc_def_t *cpu_def;
+    const sparc_def_t *cpu_def;
 };
 
 #ifndef CONFIG_USER_ONLY
-- 
2.47.1


Re: [PATCH v2 02/11] target/sparc: Constify SPARCCPUClass::cpu_def
Posted by Richard Henderson 1 month, 3 weeks ago
On 2/10/25 05:31, Philippe Mathieu-Daudé wrote:
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
>   target/sparc/cpu.h | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/target/sparc/cpu.h b/target/sparc/cpu.h
> index dda811503b5..462bcb6c0e6 100644
> --- a/target/sparc/cpu.h
> +++ b/target/sparc/cpu.h
> @@ -574,7 +574,7 @@ struct SPARCCPUClass {
>   
>       DeviceRealize parent_realize;
>       ResettablePhases parent_phases;
> -    sparc_def_t *cpu_def;
> +    const sparc_def_t *cpu_def;
>   };
>   
>   #ifndef CONFIG_USER_ONLY

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

r~