target-i386/cpu.c: Coding style fixes

- Use spaces instead of tabs on cpu_x86_cpuid().
- Use braces on 'if' statement cpu_x86_find_by_name().

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
Eduardo Habkost 2012-12-04 17:34:38 -02:00 committed by Andreas Färber
parent 23e3fbec33
commit 9f3fb5657b

View file

@ -1227,9 +1227,11 @@ static int cpu_x86_find_by_name(x86_def_t *x86_cpu_def, const char *cpu_model)
uint32_t minus_7_0_ebx_features = 0; uint32_t minus_7_0_ebx_features = 0;
uint32_t numvalue; uint32_t numvalue;
for (def = x86_defs; def; def = def->next) for (def = x86_defs; def; def = def->next) {
if (name && !strcmp(name, def->name)) if (name && !strcmp(name, def->name)) {
break; break;
}
}
if (kvm_enabled() && name && strcmp(name, "host") == 0) { if (kvm_enabled() && name && strcmp(name, "host") == 0) {
kvm_cpu_fill_host(x86_cpu_def); kvm_cpu_fill_host(x86_cpu_def);
} else if (!def) { } else if (!def) {