Commit 82ca76b6 authored by Pekka Enberg's avatar Pekka Enberg Committed by Linus Torvalds

[PATCH] drivers: convert kcalloc to kzalloc

This patch converts kcalloc(1, ...) calls to use the new kzalloc() function.
Signed-off-by: default avatarPekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 7b842b6e
...@@ -35,7 +35,7 @@ aoedev_newdev(ulong nframes) ...@@ -35,7 +35,7 @@ aoedev_newdev(ulong nframes)
struct aoedev *d; struct aoedev *d;
struct frame *f, *e; struct frame *f, *e;
d = kcalloc(1, sizeof *d, GFP_ATOMIC); d = kzalloc(sizeof *d, GFP_ATOMIC);
if (d == NULL) if (d == NULL)
return NULL; return NULL;
f = kcalloc(nframes, sizeof *f, GFP_ATOMIC); f = kcalloc(nframes, sizeof *f, GFP_ATOMIC);
......
...@@ -750,7 +750,7 @@ static int mbcs_probe(struct cx_dev *dev, const struct cx_device_id *id) ...@@ -750,7 +750,7 @@ static int mbcs_probe(struct cx_dev *dev, const struct cx_device_id *id)
dev->soft = NULL; dev->soft = NULL;
soft = kcalloc(1, sizeof(struct mbcs_soft), GFP_KERNEL); soft = kzalloc(sizeof(struct mbcs_soft), GFP_KERNEL);
if (soft == NULL) if (soft == NULL)
return -ENOMEM; return -ENOMEM;
......
...@@ -1489,7 +1489,7 @@ static int isp1301_probe(struct i2c_adapter *bus, int address, int kind) ...@@ -1489,7 +1489,7 @@ static int isp1301_probe(struct i2c_adapter *bus, int address, int kind)
if (the_transceiver) if (the_transceiver)
return 0; return 0;
isp = kcalloc(1, sizeof *isp, GFP_KERNEL); isp = kzalloc(sizeof *isp, GFP_KERNEL);
if (!isp) if (!isp)
return 0; return 0;
......
...@@ -463,7 +463,7 @@ alloc_group_attrs(ssize_t (*show)(struct ib_port *, ...@@ -463,7 +463,7 @@ alloc_group_attrs(ssize_t (*show)(struct ib_port *,
return NULL; return NULL;
for (i = 0; i < len; i++) { for (i = 0; i < len; i++) {
element = kcalloc(1, sizeof(struct port_table_attribute), element = kzalloc(sizeof(struct port_table_attribute),
GFP_KERNEL); GFP_KERNEL);
if (!element) if (!element)
goto err; goto err;
......
...@@ -494,7 +494,7 @@ static int qs_port_start(struct ata_port *ap) ...@@ -494,7 +494,7 @@ static int qs_port_start(struct ata_port *ap)
if (rc) if (rc)
return rc; return rc;
qs_enter_reg_mode(ap); qs_enter_reg_mode(ap);
pp = kcalloc(1, sizeof(*pp), GFP_KERNEL); pp = kzalloc(sizeof(*pp), GFP_KERNEL);
if (!pp) { if (!pp) {
rc = -ENOMEM; rc = -ENOMEM;
goto err_out; goto err_out;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment