Message ID | 1537532409-43532-1-git-send-email-zhongjiang@huawei.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | drivers/firmware: Should be a struct size instead of a pointer. | expand |
diff --git a/drivers/firmware/psci_checker.c b/drivers/firmware/psci_checker.c index 3469436..26afabc 100644 --- a/drivers/firmware/psci_checker.c +++ b/drivers/firmware/psci_checker.c @@ -162,7 +162,7 @@ static int alloc_init_cpu_groups(cpumask_var_t **pcpu_groups) if (!alloc_cpumask_var(&tmp, GFP_KERNEL)) return -ENOMEM; - cpu_groups = kcalloc(nb_available_cpus, sizeof(cpu_groups), + cpu_groups = kcalloc(nb_available_cpus, sizeof(*cpu_groups), GFP_KERNEL); if (!cpu_groups) return -ENOMEM;
kcalloc should be sizeof(*cpu_groups) instead of sizeof(cpu_groups). Signed-off-by: zhong jiang <zhongjiang@huawei.com> --- drivers/firmware/psci_checker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)