diff options
author | David Woodhouse <dwmw2@infradead.org> | 2006-06-14 16:39:48 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-06-14 16:39:48 -0400 |
commit | 21c8db9eff95260e543535dfc6f27164c4c0c0ff (patch) | |
tree | 68dd7562b241b5cc95e5e45c8fa555fbbe26875f /drivers/mtd/devices/slram.c | |
parent | 783ed81ff39d3f938a6b2efd09fbad96e41e5c1f (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/devices/slram.c')
-rw-r--r-- | drivers/mtd/devices/slram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/devices/slram.c b/drivers/mtd/devices/slram.c index fdb7a78b5304..b3f665e3c38b 100644 --- a/drivers/mtd/devices/slram.c +++ b/drivers/mtd/devices/slram.c | |||
@@ -207,7 +207,7 @@ static int register_device(char *name, unsigned long start, unsigned long length | |||
207 | (*curmtd)->mtdinfo->read = slram_read; | 207 | (*curmtd)->mtdinfo->read = slram_read; |
208 | (*curmtd)->mtdinfo->write = slram_write; | 208 | (*curmtd)->mtdinfo->write = slram_write; |
209 | (*curmtd)->mtdinfo->owner = THIS_MODULE; | 209 | (*curmtd)->mtdinfo->owner = THIS_MODULE; |
210 | (*curmtd)->mtdinfo->type = MTD_GENERIC_TYPE; | 210 | (*curmtd)->mtdinfo->type = MTD_RAM; |
211 | (*curmtd)->mtdinfo->erasesize = SLRAM_BLK_SZ; | 211 | (*curmtd)->mtdinfo->erasesize = SLRAM_BLK_SZ; |
212 | 212 | ||
213 | if (add_mtd_device((*curmtd)->mtdinfo)) { | 213 | if (add_mtd_device((*curmtd)->mtdinfo)) { |