mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-02 08:34:20 +08:00
powerpc: remove cast for kmalloc/kzalloc return value
remove cast for kmalloc/kzalloc return value. Signed-off-by: Zhang Yanfei <zhangyanfei@cn.fujitsu.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: Paul Mackerras <paulus@samba.org> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: linuxppc-dev@lists.ozlabs.org Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
This commit is contained in:
parent
c0b52c143e
commit
c843be8a54
@ -511,8 +511,7 @@ int __init nvram_scan_partitions(void)
|
||||
"detected: 0-length partition\n");
|
||||
goto out;
|
||||
}
|
||||
tmp_part = (struct nvram_partition *)
|
||||
kmalloc(sizeof(struct nvram_partition), GFP_KERNEL);
|
||||
tmp_part = kmalloc(sizeof(struct nvram_partition), GFP_KERNEL);
|
||||
err = -ENOMEM;
|
||||
if (!tmp_part) {
|
||||
printk(KERN_ERR "nvram_scan_partitions: kmalloc failed\n");
|
||||
|
@ -1039,7 +1039,7 @@ struct kvm_vcpu *kvmppc_core_vcpu_create(struct kvm *kvm, unsigned int id)
|
||||
if (!vcpu_book3s)
|
||||
goto out;
|
||||
|
||||
vcpu_book3s->shadow_vcpu = (struct kvmppc_book3s_shadow_vcpu *)
|
||||
vcpu_book3s->shadow_vcpu =
|
||||
kzalloc(sizeof(*vcpu_book3s->shadow_vcpu), GFP_KERNEL);
|
||||
if (!vcpu_book3s->shadow_vcpu)
|
||||
goto free_vcpu;
|
||||
|
Loading…
Reference in New Issue
Block a user