[PATCH] Fix numerous kcalloc() calls, convert to kzalloc()
[linux-block.git] / drivers / macintosh / smu.c
index 6dde27ab79a817a1c9899eac5a319754e8d8f534..6f30459b9385361d0fae5c61f399bafbaa3d67af 100644 (file)
@@ -945,7 +945,7 @@ static struct smu_sdbp_header *smu_create_sdb_partition(int id)
         */
        tlen = sizeof(struct property) + len + 18;
 
-       prop = kcalloc(tlen, 1, GFP_KERNEL);
+       prop = kzalloc(tlen, GFP_KERNEL);
        if (prop == NULL)
                return NULL;
        hdr = (struct smu_sdbp_header *)(prop + 1);