diff options
author | Burman Yan <yan_952@hotmail.com> | 2006-11-15 14:10:29 -0500 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-11-28 18:47:21 -0500 |
commit | 95b93a0cd46682c6d9e8eea803fda510cb6b863a (patch) | |
tree | 7e430d3fc04ed20791187d144730dd3052292c67 /drivers/mtd/chips/amd_flash.c | |
parent | 998a43e72d20afa7566dad66fd866fe939a89c09 (diff) |
[MTD] replace kmalloc+memset with kzalloc
Signed-off-by: Yan Burman <yan_952@hotmail.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/chips/amd_flash.c')
-rw-r--r-- | drivers/mtd/chips/amd_flash.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/mtd/chips/amd_flash.c b/drivers/mtd/chips/amd_flash.c index 16eaca69fb5a..e7999f15d85a 100644 --- a/drivers/mtd/chips/amd_flash.c +++ b/drivers/mtd/chips/amd_flash.c | |||
@@ -643,13 +643,12 @@ static struct mtd_info *amd_flash_probe(struct map_info *map) | |||
643 | int reg_idx; | 643 | int reg_idx; |
644 | int offset; | 644 | int offset; |
645 | 645 | ||
646 | mtd = (struct mtd_info*)kmalloc(sizeof(*mtd), GFP_KERNEL); | 646 | mtd = kzalloc(sizeof(*mtd), GFP_KERNEL); |
647 | if (!mtd) { | 647 | if (!mtd) { |
648 | printk(KERN_WARNING | 648 | printk(KERN_WARNING |
649 | "%s: kmalloc failed for info structure\n", map->name); | 649 | "%s: kmalloc failed for info structure\n", map->name); |
650 | return NULL; | 650 | return NULL; |
651 | } | 651 | } |
652 | memset(mtd, 0, sizeof(*mtd)); | ||
653 | mtd->priv = map; | 652 | mtd->priv = map; |
654 | 653 | ||
655 | memset(&temp, 0, sizeof(temp)); | 654 | memset(&temp, 0, sizeof(temp)); |