diff options
Diffstat (limited to 'drivers/mtd/chips/map_rom.c')
-rw-r--r-- | drivers/mtd/chips/map_rom.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/mtd/chips/map_rom.c b/drivers/mtd/chips/map_rom.c index 1b328b1378fd..cb27f855074c 100644 --- a/drivers/mtd/chips/map_rom.c +++ b/drivers/mtd/chips/map_rom.c | |||
@@ -31,12 +31,10 @@ static struct mtd_info *map_rom_probe(struct map_info *map) | |||
31 | { | 31 | { |
32 | struct mtd_info *mtd; | 32 | struct mtd_info *mtd; |
33 | 33 | ||
34 | mtd = kmalloc(sizeof(*mtd), GFP_KERNEL); | 34 | mtd = kzalloc(sizeof(*mtd), GFP_KERNEL); |
35 | if (!mtd) | 35 | if (!mtd) |
36 | return NULL; | 36 | return NULL; |
37 | 37 | ||
38 | memset(mtd, 0, sizeof(*mtd)); | ||
39 | |||
40 | map->fldrv = &maprom_chipdrv; | 38 | map->fldrv = &maprom_chipdrv; |
41 | mtd->priv = map; | 39 | mtd->priv = map; |
42 | mtd->name = map->name; | 40 | mtd->name = map->name; |