diff options
author | Eric Sesterhenn <snakebyte@gmx.de> | 2006-03-06 21:13:32 +0100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-03-17 13:20:57 +1100 |
commit | d116fe5aeafd8226712d2de9c69428725ca74474 (patch) | |
tree | 5c65b1b18d495ac9d16e875a7a4f99863ffe0edb /arch/ppc/platforms/katana.c | |
parent | 0f6be7b77ceaea01a35b37fab26f4ea3b01efe14 (diff) |
[PATCH] kzalloc() conversion in arch/ppc
This converts arch/ppc to kzalloc usage.
Crosscompile tested with allyesconfig.
Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc/platforms/katana.c')
-rw-r--r-- | arch/ppc/platforms/katana.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/ppc/platforms/katana.c b/arch/ppc/platforms/katana.c index d2766617c3c..6f3bc616174 100644 --- a/arch/ppc/platforms/katana.c +++ b/arch/ppc/platforms/katana.c @@ -662,12 +662,11 @@ katana_setup_mtd(void) ptbl_entries = (size >= (64*MB)) ? 6 : 4; - if ((ptbl = kmalloc(ptbl_entries * sizeof(struct mtd_partition), + if ((ptbl = kcalloc(ptbl_entries, sizeof(struct mtd_partition), GFP_KERNEL)) == NULL) { printk(KERN_WARNING "Can't alloc MTD partition table\n"); return -ENOMEM; } - memset(ptbl, 0, ptbl_entries * sizeof(struct mtd_partition)); ptbl[0].name = "Monitor"; ptbl[0].size = KATANA_MTD_MONITOR_SIZE; |