mtd: nand: fix erroneous read_buf call in nand_write_page_raw_syndrome
read_buf is called in place of write_buf in the nand_write_page_raw_syndrome function. Signed-off-by: Boris BREZILLON <b.brezillon.dev@gmail.com> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
This commit is contained in:
parent
3d44dc235e
commit
60c3bc1fd6
@ -2002,7 +2002,7 @@ static int nand_write_page_raw_syndrome(struct mtd_info *mtd,
|
|||||||
oob += chip->ecc.prepad;
|
oob += chip->ecc.prepad;
|
||||||
}
|
}
|
||||||
|
|
||||||
chip->read_buf(mtd, oob, eccbytes);
|
chip->write_buf(mtd, oob, eccbytes);
|
||||||
oob += eccbytes;
|
oob += eccbytes;
|
||||||
|
|
||||||
if (chip->ecc.postpad) {
|
if (chip->ecc.postpad) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user