diff options
author | David Woodhouse <dwmw2@infradead.org> | 2006-06-14 21:39:48 +0100 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2006-06-14 21:39:48 +0100 |
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 (*curmtd)->mtdinfo->read = slram_read; (*curmtd)->mtdinfo->write = slram_write; (*curmtd)->mtdinfo->owner = THIS_MODULE; - (*curmtd)->mtdinfo->type = MTD_GENERIC_TYPE; + (*curmtd)->mtdinfo->type = MTD_RAM; (*curmtd)->mtdinfo->erasesize = SLRAM_BLK_SZ; if (add_mtd_device((*curmtd)->mtdinfo)) { |