diff options
author | Pekka Enberg <penberg@cs.helsinki.fi> | 2005-09-06 18:18:35 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-09-07 19:57:46 -0400 |
commit | 82ca76b6b160b6fce46f78c069f87fe1a4dc0778 (patch) | |
tree | 7e33c8a33970971317f0b1b1eb715dd884beffc1 /drivers/infiniband | |
parent | 7b842b6e3704f4b9606ff8a4ffe03579d9addf5e (diff) |
[PATCH] drivers: convert kcalloc to kzalloc
This patch converts kcalloc(1, ...) calls to use the new kzalloc() function.
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/infiniband')
-rw-r--r-- | drivers/infiniband/core/sysfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/core/sysfs.c b/drivers/infiniband/core/sysfs.c index fae1c2dcee51..211ba3223f65 100644 --- a/drivers/infiniband/core/sysfs.c +++ b/drivers/infiniband/core/sysfs.c | |||
@@ -463,7 +463,7 @@ alloc_group_attrs(ssize_t (*show)(struct ib_port *, | |||
463 | return NULL; | 463 | return NULL; |
464 | 464 | ||
465 | for (i = 0; i < len; i++) { | 465 | for (i = 0; i < len; i++) { |
466 | element = kcalloc(1, sizeof(struct port_table_attribute), | 466 | element = kzalloc(sizeof(struct port_table_attribute), |
467 | GFP_KERNEL); | 467 | GFP_KERNEL); |
468 | if (!element) | 468 | if (!element) |
469 | goto err; | 469 | goto err; |