diff options
author | Joe Perches <joe@perches.com> | 2011-05-28 10:36:23 -0700 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2011-09-15 13:55:02 +0200 |
commit | 3a816054fcd345d0fe47c666c375d372c6170371 (patch) | |
tree | 8b775cdb79a0c8d1759b4eaa7adbd57b0fae01ce /drivers/atm/lanai.c | |
parent | dc8a5c9935d8e63123fab0d0033f15819351d0bf (diff) | |
download | linux-3a816054fcd345d0fe47c666c375d372c6170371.tar.bz2 |
atm: Convert vmalloc/memset to vzalloc
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'drivers/atm/lanai.c')
-rw-r--r-- | drivers/atm/lanai.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/atm/lanai.c b/drivers/atm/lanai.c index e828c5487493..f5569699f31c 100644 --- a/drivers/atm/lanai.c +++ b/drivers/atm/lanai.c @@ -1457,10 +1457,9 @@ static int __devinit vcc_table_allocate(struct lanai_dev *lanai) return (lanai->vccs == NULL) ? -ENOMEM : 0; #else int bytes = (lanai->num_vci) * sizeof(struct lanai_vcc *); - lanai->vccs = (struct lanai_vcc **) vmalloc(bytes); + lanai->vccs = vzalloc(bytes); if (unlikely(lanai->vccs == NULL)) return -ENOMEM; - memset(lanai->vccs, 0, bytes); return 0; #endif } |