mirror of https://github.com/xemu-project/xemu.git
x86: Drop some superfluous casts from void *
Signed-off-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Eric Blake <eblake@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
ab3ad07f89
commit
e42a92ae64
|
@ -1556,7 +1556,7 @@ static char *x86_cpuid_get_vendor(Object *obj, Error **errp)
|
||||||
CPUX86State *env = &cpu->env;
|
CPUX86State *env = &cpu->env;
|
||||||
char *value;
|
char *value;
|
||||||
|
|
||||||
value = (char *)g_malloc(CPUID_VENDOR_SZ + 1);
|
value = g_malloc(CPUID_VENDOR_SZ + 1);
|
||||||
x86_cpu_vendor_words2str(value, env->cpuid_vendor1, env->cpuid_vendor2,
|
x86_cpu_vendor_words2str(value, env->cpuid_vendor1, env->cpuid_vendor2,
|
||||||
env->cpuid_vendor3);
|
env->cpuid_vendor3);
|
||||||
return value;
|
return value;
|
||||||
|
|
|
@ -96,7 +96,7 @@ static struct kvm_cpuid2 *try_get_cpuid(KVMState *s, int max)
|
||||||
int r, size;
|
int r, size;
|
||||||
|
|
||||||
size = sizeof(*cpuid) + max * sizeof(*cpuid->entries);
|
size = sizeof(*cpuid) + max * sizeof(*cpuid->entries);
|
||||||
cpuid = (struct kvm_cpuid2 *)g_malloc0(size);
|
cpuid = g_malloc0(size);
|
||||||
cpuid->nent = max;
|
cpuid->nent = max;
|
||||||
r = kvm_ioctl(s, KVM_GET_SUPPORTED_CPUID, cpuid);
|
r = kvm_ioctl(s, KVM_GET_SUPPORTED_CPUID, cpuid);
|
||||||
if (r == 0 && cpuid->nent >= max) {
|
if (r == 0 && cpuid->nent >= max) {
|
||||||
|
|
Loading…
Reference in New Issue