Skip to content

Commit 6a93b1c

Browse files
philmdhuth
authored andcommitted
target/s390x: Fix a typo in s390_cpu_class_init()
Replace the comma at the end of the line by a semicolon. Fixes: 41868f8 ("s390x/cpumodel: "host" and "qemu" as CPU subclasses") Reviewed-by: Richard Henderson <[email protected]> Reviewed-by: Thomas Huth <[email protected]> Signed-off-by: Philippe Mathieu-Daudé <[email protected]> Message-ID: <[email protected]> Signed-off-by: Thomas Huth <[email protected]>
1 parent dba0752 commit 6a93b1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

target/s390x/cpu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ static void s390_cpu_class_init(ObjectClass *oc, void *data)
377377
resettable_class_set_parent_phases(rc, NULL, s390_cpu_reset_hold, NULL,
378378
&scc->parent_phases);
379379

380-
cc->class_by_name = s390_cpu_class_by_name,
380+
cc->class_by_name = s390_cpu_class_by_name;
381381
cc->mmu_index = s390x_cpu_mmu_index;
382382
cc->dump_state = s390_cpu_dump_state;
383383
cc->query_cpu_fast = s390_query_cpu_fast;

0 commit comments

Comments
 (0)