treewide: kzalloc() -> kcalloc()
[linux-2.6-microblaze.git] / drivers / scsi / aic94xx / aic94xx_init.c
index 6c83886..80e5b28 100644 (file)
@@ -350,7 +350,7 @@ static ssize_t asd_store_update_bios(struct device *dev,
        int flash_command = FLASH_CMD_NONE;
        int err = 0;
 
-       cmd_ptr = kzalloc(count*2, GFP_KERNEL);
+       cmd_ptr = kcalloc(count, 2, GFP_KERNEL);
 
        if (!cmd_ptr) {
                err = FAIL_OUT_MEMORY;