[PATCH] sk98lin: use kzalloc
Trivial use of kzalloc. Signed-off-by: Stephen Hemminger <shemminger@osdl.org> Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
This commit is contained in:
parent
decf67aa2f
commit
26fc354914
@ -4807,14 +4807,13 @@ static int __devinit skge_probe_one(struct pci_dev *pdev,
|
|||||||
}
|
}
|
||||||
|
|
||||||
pNet = netdev_priv(dev);
|
pNet = netdev_priv(dev);
|
||||||
pNet->pAC = kmalloc(sizeof(SK_AC), GFP_KERNEL);
|
pNet->pAC = kzalloc(sizeof(SK_AC), GFP_KERNEL);
|
||||||
if (!pNet->pAC) {
|
if (!pNet->pAC) {
|
||||||
printk(KERN_ERR "Unable to allocate adapter "
|
printk(KERN_ERR "Unable to allocate adapter "
|
||||||
"structure!\n");
|
"structure!\n");
|
||||||
goto out_free_netdev;
|
goto out_free_netdev;
|
||||||
}
|
}
|
||||||
|
|
||||||
memset(pNet->pAC, 0, sizeof(SK_AC));
|
|
||||||
pAC = pNet->pAC;
|
pAC = pNet->pAC;
|
||||||
pAC->PciDev = pdev;
|
pAC->PciDev = pdev;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user