diff options
author | Thomas Gleixner <tglx@cruncher.tec.linutronix.de> | 2006-05-27 14:36:12 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@cruncher.tec.linutronix.de> | 2006-05-29 09:06:49 -0400 |
commit | ff268fb8791cf18df536113355d7184007c269d9 (patch) | |
tree | 3a7d9fc72b28f5a0f11a2f8b08174b1bee6ea20d /fs/jffs2/wbuf.c | |
parent | 8be834f76291fdcc0614cb84926c6910b9f2ecbc (diff) |
[MTD] NAND Consolidate oobinfo handling
The info structure for out of band data was copied into
the mtd structure. Make it a pointer and remove the ability
to set it from userspace. The position of ecc bytes is
defined by the hardware and should not be changed by software.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'fs/jffs2/wbuf.c')
-rw-r--r-- | fs/jffs2/wbuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/jffs2/wbuf.c b/fs/jffs2/wbuf.c index 717fa2f52ac2..dc275cedfe4a 100644 --- a/fs/jffs2/wbuf.c +++ b/fs/jffs2/wbuf.c | |||
@@ -1151,7 +1151,7 @@ static struct nand_oobinfo jffs2_oobinfo_docecc = { | |||
1151 | 1151 | ||
1152 | static int jffs2_nand_set_oobinfo(struct jffs2_sb_info *c) | 1152 | static int jffs2_nand_set_oobinfo(struct jffs2_sb_info *c) |
1153 | { | 1153 | { |
1154 | struct nand_oobinfo *oinfo = &c->mtd->oobinfo; | 1154 | struct nand_oobinfo *oinfo = c->mtd->oobinfo; |
1155 | 1155 | ||
1156 | /* Do this only, if we have an oob buffer */ | 1156 | /* Do this only, if we have an oob buffer */ |
1157 | if (!c->mtd->oobsize) | 1157 | if (!c->mtd->oobsize) |