diff options
author | Igor Mammedov <imammedo@redhat.com> | 2017-10-05 15:50:51 +0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2017-10-27 16:03:54 +0200 |
commit | a677273142a6db7dea6c70ea7076a28c10b93cb7 (patch) | |
tree | 8e9ce019a4960147080d96c4393e826a9af5b4ae /target/openrisc/cpu.h | |
parent | b2c223571e1a4c0bc4cf559fbc433c0a2b83ae35 (diff) | |
download | qemu-a677273142a6db7dea6c70ea7076a28c10b93cb7.zip qemu-a677273142a6db7dea6c70ea7076a28c10b93cb7.tar.gz qemu-a677273142a6db7dea6c70ea7076a28c10b93cb7.tar.bz2 |
openrisc: cleanup cpu type name composition
use new OPENRISC_CPU_TYPE_NAME to compose CPU type name and get
rid of intermediate OpenRISCCPUInfo/openrisc_cpu_register_types()
which is replaced by static TypeInfo array.
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <1507211474-188400-18-git-send-email-imammedo@redhat.com>
Acked-by: Stafford Horne <shorne@gmail.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target/openrisc/cpu.h')
-rw-r--r-- | target/openrisc/cpu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/openrisc/cpu.h b/target/openrisc/cpu.h index 892dc42..cc22dc8 100644 --- a/target/openrisc/cpu.h +++ b/target/openrisc/cpu.h @@ -392,6 +392,9 @@ int cpu_openrisc_get_phys_data(OpenRISCCPU *cpu, #define cpu_init(cpu_model) cpu_generic_init(TYPE_OPENRISC_CPU, cpu_model) +#define OPENRISC_CPU_TYPE_SUFFIX "-" TYPE_OPENRISC_CPU +#define OPENRISC_CPU_TYPE_NAME(model) model OPENRISC_CPU_TYPE_SUFFIX + #include "exec/cpu-all.h" #define TB_FLAGS_DFLAG 1 |