Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 7448
b: refs/heads/master
c: 82ca76b
h: refs/heads/master
v: v3
  • Loading branch information
Pekka Enberg authored and Linus Torvalds committed Sep 7, 2005
1 parent 30afad4 commit 4bc8235
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 7b842b6e3704f4b9606ff8a4ffe03579d9addf5e
refs/heads/master: 82ca76b6b160b6fce46f78c069f87fe1a4dc0778
2 changes: 1 addition & 1 deletion trunk/drivers/block/aoe/aoedev.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ aoedev_newdev(ulong nframes)
struct aoedev *d;
struct frame *f, *e;

d = kcalloc(1, sizeof *d, GFP_ATOMIC);
d = kzalloc(sizeof *d, GFP_ATOMIC);
if (d == NULL)
return NULL;
f = kcalloc(nframes, sizeof *f, GFP_ATOMIC);
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/char/mbcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -750,7 +750,7 @@ static int mbcs_probe(struct cx_dev *dev, const struct cx_device_id *id)

dev->soft = NULL;

soft = kcalloc(1, sizeof(struct mbcs_soft), GFP_KERNEL);
soft = kzalloc(sizeof(struct mbcs_soft), GFP_KERNEL);
if (soft == NULL)
return -ENOMEM;

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/i2c/chips/isp1301_omap.c
Original file line number Diff line number Diff line change
Expand Up @@ -1489,7 +1489,7 @@ static int isp1301_probe(struct i2c_adapter *bus, int address, int kind)
if (the_transceiver)
return 0;

isp = kcalloc(1, sizeof *isp, GFP_KERNEL);
isp = kzalloc(sizeof *isp, GFP_KERNEL);
if (!isp)
return 0;

Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/infiniband/core/sysfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ alloc_group_attrs(ssize_t (*show)(struct ib_port *,
return NULL;

for (i = 0; i < len; i++) {
element = kcalloc(1, sizeof(struct port_table_attribute),
element = kzalloc(sizeof(struct port_table_attribute),
GFP_KERNEL);
if (!element)
goto err;
Expand Down
2 changes: 1 addition & 1 deletion trunk/drivers/scsi/sata_qstor.c
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ static int qs_port_start(struct ata_port *ap)
if (rc)
return rc;
qs_enter_reg_mode(ap);
pp = kcalloc(1, sizeof(*pp), GFP_KERNEL);
pp = kzalloc(sizeof(*pp), GFP_KERNEL);
if (!pp) {
rc = -ENOMEM;
goto err_out;
Expand Down

0 comments on commit 4bc8235

Please sign in to comment.