aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/chips
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw2@infradead.org>2006-06-14 16:39:48 -0400
committerDavid Woodhouse <dwmw2@infradead.org>2006-06-14 16:39:48 -0400
commit21c8db9eff95260e543535dfc6f27164c4c0c0ff (patch)
tree68dd7562b241b5cc95e5e45c8fa555fbbe26875f /drivers/mtd/chips
parent783ed81ff39d3f938a6b2efd09fbad96e41e5c1f (diff)
[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')
-rw-r--r--drivers/mtd/chips/map_ram.c2
-rw-r--r--drivers/mtd/chips/map_rom.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/chips/map_ram.c b/drivers/mtd/chips/map_ram.c
index 9b7c49930a76..763925747db6 100644
--- a/drivers/mtd/chips/map_ram.c
+++ b/drivers/mtd/chips/map_ram.c
@@ -64,7 +64,7 @@ static struct mtd_info *map_ram_probe(struct map_info *map)
64 map->fldrv = &mapram_chipdrv; 64 map->fldrv = &mapram_chipdrv;
65 mtd->priv = map; 65 mtd->priv = map;
66 mtd->name = map->name; 66 mtd->name = map->name;
67 mtd->type = MTD_GENERIC_TYPE; 67 mtd->type = MTD_RAM;
68 mtd->size = map->size; 68 mtd->size = map->size;
69 mtd->erase = mapram_erase; 69 mtd->erase = mapram_erase;
70 mtd->read = mapram_read; 70 mtd->read = mapram_read;
diff --git a/drivers/mtd/chips/map_rom.c b/drivers/mtd/chips/map_rom.c
index d59ac0136510..bc6ee9ef8a31 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)
40 map->fldrv = &maprom_chipdrv; 40 map->fldrv = &maprom_chipdrv;
41 mtd->priv = map; 41 mtd->priv = map;
42 mtd->name = map->name; 42 mtd->name = map->name;
43 mtd->type = MTD_GENERIC_TYPE; 43 mtd->type = MTD_ROM;
44 mtd->size = map->size; 44 mtd->size = map->size;
45 mtd->read = maprom_read; 45 mtd->read = maprom_read;
46 mtd->write = maprom_write; 46 mtd->write = maprom_write;