aboutsummaryrefslogtreecommitdiff
path: root/target
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@linaro.org>2025-03-24 17:53:56 +0100
committerThomas Huth <thuth@redhat.com>2025-03-27 08:59:35 +0100
commit6a93b1c7b4cfa4f5e3c0b8a17177ce14aaa2346c (patch)
tree510d86098b368c18b79103617f43e2c60ef8d26a /target
parentdba0752f2c16f63825a06e9ebe4ac651bdc95b99 (diff)
downloadqemu-6a93b1c7b4cfa4f5e3c0b8a17177ce14aaa2346c.zip
qemu-6a93b1c7b4cfa4f5e3c0b8a17177ce14aaa2346c.tar.gz
qemu-6a93b1c7b4cfa4f5e3c0b8a17177ce14aaa2346c.tar.bz2
target/s390x: Fix a typo in s390_cpu_class_init()
Replace the comma at the end of the line by a semicolon. Fixes: 41868f846d2 ("s390x/cpumodel: "host" and "qemu" as CPU subclasses") Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org> Message-ID: <20250324165356.39540-1-philmd@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'target')
-rw-r--r--target/s390x/cpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/target/s390x/cpu.c b/target/s390x/cpu.c
index d731426..1f75629 100644
--- a/target/s390x/cpu.c
+++ b/target/s390x/cpu.c
@@ -377,7 +377,7 @@ static void s390_cpu_class_init(ObjectClass *oc, void *data)
resettable_class_set_parent_phases(rc, NULL, s390_cpu_reset_hold, NULL,
&scc->parent_phases);
- cc->class_by_name = s390_cpu_class_by_name,
+ cc->class_by_name = s390_cpu_class_by_name;
cc->mmu_index = s390x_cpu_mmu_index;
cc->dump_state = s390_cpu_dump_state;
cc->query_cpu_fast = s390_query_cpu_fast;