diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2006-09-28 15:38:36 +0200 |
---|---|---|
committer | Artem Bityutskiy <dedekind@infradead.org> | 2006-11-29 17:03:52 +0200 |
commit | 29072b96078ffde36f03d51e6b5d0cff1ba8c7df (patch) | |
tree | 1353a27ae7e594044c521e28abf558e3796f98c9 /include/linux/mtd/mtd.h | |
parent | f6a7ecb18dabd88bd9f28e7bece564cabe8ffe82 (diff) | |
download | blackbird-op-linux-29072b96078ffde36f03d51e6b5d0cff1ba8c7df.tar.gz blackbird-op-linux-29072b96078ffde36f03d51e6b5d0cff1ba8c7df.zip |
[MTD] NAND: add subpage write support
Many SLC NANDs support up to 4 writes at one NAND page. Add support
of this feature.
Signed-off-by: Artem Bityutskiy <dedekind@infradead.org>
Diffstat (limited to 'include/linux/mtd/mtd.h')
-rw-r--r-- | include/linux/mtd/mtd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/mtd/mtd.h b/include/linux/mtd/mtd.h index e34bbc98d4fe..18acb6d0033b 100644 --- a/include/linux/mtd/mtd.h +++ b/include/linux/mtd/mtd.h @@ -200,6 +200,8 @@ struct mtd_info { /* ECC status information */ struct mtd_ecc_stats ecc_stats; + /* Subpage shift (NAND) */ + int subpage_sft; void *priv; |