diff options
Diffstat (limited to 'drivers/ide/it821x.c')
| -rw-r--r-- | drivers/ide/it821x.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ide/it821x.c b/drivers/ide/it821x.c index 04029d18a696..36a64c8ea575 100644 --- a/drivers/ide/it821x.c +++ b/drivers/ide/it821x.c @@ -652,7 +652,7 @@ static int it821x_init_one(struct pci_dev *dev, const struct pci_device_id *id)  	struct it821x_dev *itdevs;  	int rc; -	itdevs = kzalloc(2 * sizeof(*itdevs), GFP_KERNEL); +	itdevs = kcalloc(2, sizeof(*itdevs), GFP_KERNEL);  	if (itdevs == NULL) {  		printk(KERN_ERR DRV_NAME " %s: out of memory\n", pci_name(dev));  		return -ENOMEM;  |