aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mtd/devices/ms02-nv.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/devices/ms02-nv.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/devices/ms02-nv.c')
-rw-r--r--drivers/mtd/devices/ms02-nv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/devices/ms02-nv.c b/drivers/mtd/devices/ms02-nv.c
index 4ab7670770e4..a6466f923e7e 100644
--- a/drivers/mtd/devices/ms02-nv.c
+++ b/drivers/mtd/devices/ms02-nv.c
@@ -218,7 +218,7 @@ static int __init ms02nv_init_one(ulong addr)
218 fixsize = (size - (fixaddr - addr)) & ~(PAGE_SIZE - 1); 218 fixsize = (size - (fixaddr - addr)) & ~(PAGE_SIZE - 1);
219 mp->uaddr = phys_to_virt(fixaddr); 219 mp->uaddr = phys_to_virt(fixaddr);
220 220
221 mtd->type = MTD_RAM; 221 mtd->type = MTD_GENERIC_TYPE;
222 mtd->flags = MTD_CAP_RAM; 222 mtd->flags = MTD_CAP_RAM;
223 mtd->size = fixsize; 223 mtd->size = fixsize;
224 mtd->name = (char *)ms02nv_name; 224 mtd->name = (char *)ms02nv_name;