diff options
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)); |