diff options
author | Igor Mammedov <imammedo@redhat.com> | 2017-08-24 18:31:43 +0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2017-09-01 11:54:25 -0300 |
commit | a7a1c09b41dfcc24dc8a18f674d4a55530be9925 (patch) | |
tree | e7983876c62a6289e46692eb7a16ffd9a4827a50 /target/i386/cpu.c | |
parent | 673a11ca6a6d1072b358a835396baadfa8ceafd6 (diff) |
x86: replace cpu_x86_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-21-git-send-email-imammedo@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target/i386/cpu.c')
-rw-r--r-- | target/i386/cpu.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/target/i386/cpu.c b/target/i386/cpu.c index 6617e01a72..f81576d11d 100644 --- a/target/i386/cpu.c +++ b/target/i386/cpu.c @@ -2686,11 +2686,6 @@ static gchar *x86_gdb_arch_name(CPUState *cs) #endif } -X86CPU *cpu_x86_init(const char *cpu_model) -{ - return X86_CPU(cpu_generic_init(TYPE_X86_CPU, cpu_model)); -} - static void x86_cpu_cpudef_class_init(ObjectClass *oc, void *data) { X86CPUDefinition *cpudef = data; |