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 /include/mtd | |
parent | 783ed81ff39d3f938a6b2efd09fbad96e41e5c1f (diff) | |
download | linux-3.10-21c8db9eff95260e543535dfc6f27164c4c0c0ff.tar.gz linux-3.10-21c8db9eff95260e543535dfc6f27164c4c0c0ff.tar.bz2 linux-3.10-21c8db9eff95260e543535dfc6f27164c4c0c0ff.zip |
[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 'include/mtd')
-rw-r--r-- | include/mtd/mtd-abi.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/mtd/mtd-abi.h b/include/mtd/mtd-abi.h index 7ccadb1eaf7..ee2afbaefe1 100644 --- a/include/mtd/mtd-abi.h +++ b/include/mtd/mtd-abi.h @@ -24,10 +24,11 @@ struct mtd_oob_buf { }; #define MTD_ABSENT 0 +#define MTD_RAM 1 +#define MTD_ROM 2 #define MTD_NORFLASH 3 #define MTD_NANDFLASH 4 #define MTD_DATAFLASH 6 -#define MTD_GENERIC_TYPE 7 #define MTD_WRITEABLE 0x400 /* Device is writeable */ #define MTD_BIT_WRITEABLE 0x800 /* Single bits can be flipped */ |