aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/chips/map_ram.c
diff options
context:
space:
mode:
authorJoern Engel <joern@wh.fh-wedel.de>2006-05-30 08:25:24 -0400
committerJoern Engel <joern@wh.fh-wedel.de>2006-05-30 08:25:24 -0400
commit92cbfdcc3661d7670b01b92b89811cd3a2412297 (patch)
tree70e4c9a94a121594e58a57c4c454ac854bb10a3a /drivers/mtd/chips/map_ram.c
parente369d62e92d526a7ed641e2f0b2978fb0ce366c5 (diff)
[MTD] replace MTD_RAM with MTD_GENERIC_TYPE
Ram devices get the extra capability of MTD_NO_ERASE - not requiring an explicit erase before writing to it. Currently only mtdblock uses this capability. Rest of the patch is a simple text replacement. Signed-off-by: Joern Engel <joern@wh.fh-wedel.de>
Diffstat (limited to 'drivers/mtd/chips/map_ram.c')
-rw-r--r--drivers/mtd/chips/map_ram.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/chips/map_ram.c b/drivers/mtd/chips/map_ram.c
index 763925747db6..9b7c49930a76 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_RAM; 67 mtd->type = MTD_GENERIC_TYPE;
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;