diff options
author | Om Narasimhan <om.turyx@gmail.com> | 2006-10-03 16:27:18 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-10-04 00:31:04 -0700 |
commit | 0c1cca1d8e0d58775dad43374f925e6cddf1bebc (patch) | |
tree | 72b5aee63958025c7e3aa03f76ae40a004b58750 /drivers/atm/he.c | |
parent | 617dbeaa3f2987acc83c1149409685005e9dd740 (diff) |
[ATM]: kmalloc to kzalloc patches for drivers/atm
Signed-off-by: Om Narasimhan <om.turyx@gmail.com>
Signed-off-by: Chas Williams <chas@cmf.nrl.navy.mil>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/atm/he.c')
-rw-r--r-- | drivers/atm/he.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/atm/he.c b/drivers/atm/he.c index f2511b42dba2..b22a9142b240 100644 --- a/drivers/atm/he.c +++ b/drivers/atm/he.c @@ -383,14 +383,12 @@ he_init_one(struct pci_dev *pci_dev, const struct pci_device_id *pci_ent) } pci_set_drvdata(pci_dev, atm_dev); - he_dev = (struct he_dev *) kmalloc(sizeof(struct he_dev), + he_dev = kzalloc(sizeof(struct he_dev), GFP_KERNEL); if (!he_dev) { err = -ENOMEM; goto init_one_failure; } - memset(he_dev, 0, sizeof(struct he_dev)); - he_dev->pci_dev = pci_dev; he_dev->atm_dev = atm_dev; he_dev->atm_dev->dev_data = he_dev; |