diff options
author | Joern Engel <joern@wh.fh-wedel.de> | 2006-05-30 08:25:24 -0400 |
---|---|---|
committer | Joern Engel <joern@wh.fh-wedel.de> | 2006-05-30 08:25:24 -0400 |
commit | 92cbfdcc3661d7670b01b92b89811cd3a2412297 (patch) | |
tree | 70e4c9a94a121594e58a57c4c454ac854bb10a3a /drivers/mtd/devices/mtdram.c | |
parent | e369d62e92d526a7ed641e2f0b2978fb0ce366c5 (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/mtdram.c')
-rw-r--r-- | drivers/mtd/devices/mtdram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/devices/mtdram.c b/drivers/mtd/devices/mtdram.c index 1443117fd8f4..f284c9670be8 100644 --- a/drivers/mtd/devices/mtdram.c +++ b/drivers/mtd/devices/mtdram.c | |||
@@ -103,7 +103,7 @@ int mtdram_init_device(struct mtd_info *mtd, void *mapped_address, | |||
103 | 103 | ||
104 | /* Setup the MTD structure */ | 104 | /* Setup the MTD structure */ |
105 | mtd->name = name; | 105 | mtd->name = name; |
106 | mtd->type = MTD_RAM; | 106 | mtd->type = MTD_GENERIC_TYPE; |
107 | mtd->flags = MTD_CAP_RAM; | 107 | mtd->flags = MTD_CAP_RAM; |
108 | mtd->size = size; | 108 | mtd->size = size; |
109 | mtd->erasesize = MTDRAM_ERASE_SIZE; | 109 | mtd->erasesize = MTDRAM_ERASE_SIZE; |