summaryrefslogtreecommitdiff
path: root/drivers/mtd/chips/map_rom.c
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2006-06-14 20:39:48 (GMT)
committerDavid Woodhouse <dwmw2@infradead.org>2006-06-14 20:39:48 (GMT)
commit21c8db9eff95260e543535dfc6f27164c4c0c0ff (patch)
tree68dd7562b241b5cc95e5e45c8fa555fbbe26875f /drivers/mtd/chips/map_rom.c
parent783ed81ff39d3f938a6b2efd09fbad96e41e5c1f (diff)
downloadlinux-fsl-qoriq-21c8db9eff95260e543535dfc6f27164c4c0c0ff.tar.xz
[MTD] Restore MTD_ROM and MTD_RAM types
Let's not attempt the abolition of mtd->type until/unless it's properly thought through. And certainly, let's not do it by halves. Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Diffstat (limited to 'drivers/mtd/chips/map_rom.c')
-rw-r--r--drivers/mtd/chips/map_rom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/chips/map_rom.c b/drivers/mtd/chips/map_rom.c
index d59ac01..bc6ee9e 100644
--- a/drivers/mtd/chips/map_rom.c
+++ b/drivers/mtd/chips/map_rom.c
@@ -40,7 +40,7 @@ static struct mtd_info *map_rom_probe(struct map_info *map)
map->fldrv = &maprom_chipdrv;
mtd->priv = map;
mtd->name = map->name;
- mtd->type = MTD_GENERIC_TYPE;
+ mtd->type = MTD_ROM;
mtd->size = map->size;
mtd->read = maprom_read;
mtd->write = maprom_write;