diff options
author | Stephen Hemminger <shemminger@osdl.org> | 2006-01-06 19:57:42 -0500 |
---|---|---|
committer | Jeff Garzik <jgarzik@pobox.com> | 2006-01-09 10:32:40 -0500 |
commit | 26fc354914219a91254afd0df573fc801bb1183a (patch) | |
tree | 93cc2dee3031788630522f0d21376f61de698250 /drivers/net/sk98lin | |
parent | decf67aa2f4d498c02c2ad24a187a66c217f330c (diff) |
[PATCH] sk98lin: use kzalloc
Trivial use of kzalloc.
Signed-off-by: Stephen Hemminger <shemminger@osdl.org>
Signed-off-by: Jeff Garzik <jgarzik@pobox.com>
Diffstat (limited to 'drivers/net/sk98lin')
-rw-r--r-- | drivers/net/sk98lin/skge.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/net/sk98lin/skge.c b/drivers/net/sk98lin/skge.c index 87bfe4c24a77..9f89c23191d0 100644 --- a/drivers/net/sk98lin/skge.c +++ b/drivers/net/sk98lin/skge.c | |||
@@ -4807,14 +4807,13 @@ static int __devinit skge_probe_one(struct pci_dev *pdev, | |||
4807 | } | 4807 | } |
4808 | 4808 | ||
4809 | pNet = netdev_priv(dev); | 4809 | pNet = netdev_priv(dev); |
4810 | pNet->pAC = kmalloc(sizeof(SK_AC), GFP_KERNEL); | 4810 | pNet->pAC = kzalloc(sizeof(SK_AC), GFP_KERNEL); |
4811 | if (!pNet->pAC) { | 4811 | if (!pNet->pAC) { |
4812 | printk(KERN_ERR "Unable to allocate adapter " | 4812 | printk(KERN_ERR "Unable to allocate adapter " |
4813 | "structure!\n"); | 4813 | "structure!\n"); |
4814 | goto out_free_netdev; | 4814 | goto out_free_netdev; |
4815 | } | 4815 | } |
4816 | 4816 | ||
4817 | memset(pNet->pAC, 0, sizeof(SK_AC)); | ||
4818 | pAC = pNet->pAC; | 4817 | pAC = pNet->pAC; |
4819 | pAC->PciDev = pdev; | 4818 | pAC->PciDev = pdev; |
4820 | 4819 | ||