]> git.proxmox.com Git - qemu.git/commitdiff
target-i386: make cpu_x86_fill_host() void
authorEduardo Habkost <ehabkost@redhat.com>
Wed, 24 Oct 2012 21:44:05 +0000 (19:44 -0200)
committerMarcelo Tosatti <mtosatti@redhat.com>
Wed, 31 Oct 2012 01:39:53 +0000 (23:39 -0200)
The return value of that function is always 0, and is always ignored.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
target-i386/cpu.c

index 4417d6abed5c747a2ab664cc4c4c0d931ed82b67..6575834885742d822506a936ec437bd01f7895a7 100644 (file)
@@ -766,7 +766,7 @@ static int cpu_x86_fill_model_id(char *str)
     return 0;
 }
 
-static int cpu_x86_fill_host(x86_def_t *x86_cpu_def)
+static void cpu_x86_fill_host(x86_def_t *x86_cpu_def)
 {
     uint32_t eax = 0, ebx = 0, ecx = 0, edx = 0;
 
@@ -819,8 +819,6 @@ static int cpu_x86_fill_host(x86_def_t *x86_cpu_def)
      * unsupported ones later.
      */
     x86_cpu_def->svm_features = -1;
-
-    return 0;
 }
 
 static int unavailable_host_feature(struct model_features_t *f, uint32_t mask)