diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2015-10-30 18:10:57 -0200 |
---|---|---|
committer | Eduardo Habkost <ehabkost@redhat.com> | 2016-05-23 19:47:37 -0300 |
commit | 3e2c0e062f0963a6b73b0cd1990fad79495463d9 (patch) | |
tree | d2f662f76bb46956c9b4cf1d948fe7ae358ca66c /target-i386/cpu.c | |
parent | 9cf2cc3d8237732946720d78bf9aec0064026ed8 (diff) | |
download | qemu-3e2c0e062f0963a6b73b0cd1990fad79495463d9.tar.gz qemu-3e2c0e062f0963a6b73b0cd1990fad79495463d9.tar.bz2 qemu-3e2c0e062f0963a6b73b0cd1990fad79495463d9.zip |
cpu: Eliminate cpudef_init(), cpudef_setup()
x86_cpudef_init() doesn't do anything anymore, cpudef_init(),
cpudef_setup(), and x86_cpudef_init() can be finally removed.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target-i386/cpu.c')
-rw-r--r-- | target-i386/cpu.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/target-i386/cpu.c b/target-i386/cpu.c index 14f64cb3b9..e615486596 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -2274,10 +2274,6 @@ void cpu_clear_apic_feature(CPUX86State *env) #endif /* !CONFIG_USER_ONLY */ -void x86_cpudef_setup(void) -{ -} - void cpu_x86_cpuid(CPUX86State *env, uint32_t index, uint32_t count, uint32_t *eax, uint32_t *ebx, uint32_t *ecx, uint32_t *edx) |