diff options
author | Eduardo Habkost <ehabkost@redhat.com> | 2014-01-20 14:41:08 -0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-02-03 17:33:54 +0100 |
commit | 81e207707e7b6204f64451779d752f23777ed451 (patch) | |
tree | d0d11c031b473daf8bc2fbb9a65ffaa4836a0a84 | |
parent | 0169c511554cb0014a00290b0d3d26c31a49818f (diff) | |
download | qemu-81e207707e7b6204f64451779d752f23777ed451.zip |
target-i386: kvm_cpu_fill_host(): Kill unused code
Those host_cpuid() calls are useless. They are leftovers from when the
old code using host_cpuid() was removed.
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | target-i386/cpu.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/target-i386/cpu.c b/target-i386/cpu.c index e6f7eaf5cd..07f7f82c22 100644 --- a/target-i386/cpu.c +++ b/target-i386/cpu.c @@ -1182,12 +1182,10 @@ static void kvm_cpu_fill_host(x86_def_t *x86_cpu_def) /* Call Centaur's CPUID instruction. */ if (!strcmp(x86_cpu_def->vendor, CPUID_VENDOR_VIA)) { - host_cpuid(0xC0000000, 0, &eax, &ebx, &ecx, &edx); eax = kvm_arch_get_supported_cpuid(s, 0xC0000000, 0, R_EAX); if (eax >= 0xC0000001) { /* Support VIA max extended level */ x86_cpu_def->xlevel2 = eax; - host_cpuid(0xC0000001, 0, &eax, &ebx, &ecx, &edx); x86_cpu_def->features[FEAT_C000_0001_EDX] = kvm_arch_get_supported_cpuid(s, 0xC0000001, 0, R_EDX); } |