For target/rx, the registered CPU type name is always the combination of the CPU model name and suffix. Use cpu_model_from_type() to show the CPU model names.
Signed-off-by: Gavin Shan <gs...@redhat.com> --- target/rx/cpu.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/target/rx/cpu.c b/target/rx/cpu.c index 0063837e93..fea7f596ca 100644 --- a/target/rx/cpu.c +++ b/target/rx/cpu.c @@ -91,9 +91,11 @@ static void rx_cpu_reset_hold(Object *obj) static void rx_cpu_list_entry(gpointer data, gpointer user_data) { - ObjectClass *oc = data; + const char *typename = object_class_get_name(OBJECT_CLASS(data)); + char *model = cpu_model_from_type(typename); - qemu_printf(" %s\n", object_class_get_name(oc)); + qemu_printf(" %s\n", model); + g_free(model); } void rx_cpu_list(void) -- 2.41.0