mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-19 08:02:15 -06:00
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:
parent
23e3fbec33
commit
9f3fb5657b
1 changed files with 16 additions and 14 deletions
|
@ -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) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue