diff options
author | Igor Mammedov <imammedo@redhat.com> | 2017-08-24 18:31:45 +0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2017-09-01 11:54:25 -0300 |
commit | a328ad964774ce3043dade8c9870139f127a3372 (patch) | |
tree | 22deb63bb4c8ff2bef35cb4cf303c1b731be746a /target/moxie/cpu.c | |
parent | 1d197417a31d74b5b875addd1837343e3ea7d5f2 (diff) | |
download | qemu-a328ad964774ce3043dade8c9870139f127a3372.zip |
moxie: replace cpu_moxie_init() with cpu_generic_init()
it's just a wrapper, drop it and use cpu_generic_init() directly
Signed-off-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Message-Id: <1503592308-93913-23-git-send-email-imammedo@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target/moxie/cpu.c')
-rw-r--r-- | target/moxie/cpu.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target/moxie/cpu.c b/target/moxie/cpu.c index 927b1a1e44..748d02f29e 100644 --- a/target/moxie/cpu.c +++ b/target/moxie/cpu.c @@ -150,11 +150,6 @@ static const MoxieCPUInfo moxie_cpus[] = { { .name = "any", .initfn = moxie_any_initfn }, }; -MoxieCPU *cpu_moxie_init(const char *cpu_model) -{ - return MOXIE_CPU(cpu_generic_init(TYPE_MOXIE_CPU, cpu_model)); -} - static void cpu_register(const MoxieCPUInfo *info) { TypeInfo type_info = { |