mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
mtd: nftl: write support is broken
Write support is broken in NFTL. Fix it. Signed-off-by: <dimitri.gorokhovik@free.fr> Cc: Tim Gardner <tim.gardner@canonical.com> Cc: Scott James Remnant <scott@canonical.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
parent
edcb3b1486
commit
4149ed1aa9
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ static int nftl_write(struct mtd_info *mtd, loff_t offs, size_t len,
|
|||
int res;
|
||||
|
||||
ops.mode = MTD_OOB_PLACE;
|
||||
ops.ooboffs = offs;
|
||||
ops.ooboffs = offs & (mtd->writesize - 1);
|
||||
ops.ooblen = mtd->oobsize;
|
||||
ops.oobbuf = oob;
|
||||
ops.datbuf = buf;
|
||||
|
|
Loading…
Reference in a new issue