diff options
| author | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-02-10 09:56:56 +0100 |
|---|---|---|
| committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-04-25 17:00:41 +0200 |
| commit | b282b859cf3442d922644e2cd2bee68272baafd5 (patch) | |
| tree | 0d87712ce7b644321ba1820a8f7fb57ad43382e9 /target/sparc/cpu.c | |
| parent | 12d1a768bdfea6e27a3a829228840d72507613a1 (diff) | |
| download | focaccia-qemu-b282b859cf3442d922644e2cd2bee68272baafd5.tar.gz focaccia-qemu-b282b859cf3442d922644e2cd2bee68272baafd5.zip | |
qom: Constify TypeInfo::class_data
All callers now correctly expect a const class data. Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20250424194905.82506-5-philmd@linaro.org>
Diffstat (limited to 'target/sparc/cpu.c')
| -rw-r--r-- | target/sparc/cpu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/sparc/cpu.c b/target/sparc/cpu.c index 981aa86e0e..bc753d5f62 100644 --- a/target/sparc/cpu.c +++ b/target/sparc/cpu.c @@ -1104,7 +1104,7 @@ static void sparc_register_cpudef_type(const struct sparc_def_t *def) .name = typename, .parent = TYPE_SPARC_CPU, .class_init = sparc_cpu_cpudef_class_init, - .class_data = (void *)def, + .class_data = def, }; type_register_static(&ti); |