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/phram.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/phram.c')
-rw-r--r-- | drivers/mtd/devices/phram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/devices/phram.c b/drivers/mtd/devices/phram.c index e6daa74d5fc6..e09e416667d3 100644 --- a/drivers/mtd/devices/phram.c +++ b/drivers/mtd/devices/phram.c | |||
@@ -149,7 +149,7 @@ static int register_device(char *name, unsigned long start, unsigned long len) | |||
149 | new->mtd.read = phram_read; | 149 | new->mtd.read = phram_read; |
150 | new->mtd.write = phram_write; | 150 | new->mtd.write = phram_write; |
151 | new->mtd.owner = THIS_MODULE; | 151 | new->mtd.owner = THIS_MODULE; |
152 | new->mtd.type = MTD_GENERIC_TYPE; | 152 | new->mtd.type = MTD_RAM; |
153 | new->mtd.erasesize = PAGE_SIZE; | 153 | new->mtd.erasesize = PAGE_SIZE; |
154 | 154 | ||
155 | ret = -EAGAIN; | 155 | ret = -EAGAIN; |