9
0
Fork 0

bcb: fix compilation

this fix :
arch/arm/mach-mxs/bcb.c:268: error: too few arguments to function 'chip->ecc.read_page_raw'
arch/arm/mach-mxs/bcb.c:309: error: too few arguments to function 'chip->write_page'

caution : this is NOT runtime tested.

Signed-off-by: Eric Bénard <eric@eukrea.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Eric Bénard 2013-10-24 15:26:52 +02:00 committed by Sascha Hauer
parent cf9b0c6927
commit 2826ba50ed
1 changed files with 2 additions and 2 deletions

View File

@ -265,7 +265,7 @@ static int find_fcb(struct mtd_info *mtd, void *ref, int page)
chip->select_chip(mtd, 0);
chip->cmdfunc(mtd, NAND_CMD_READ0, 0x00, page);
ret = chip->ecc.read_page_raw(mtd, chip, buf);
ret = chip->ecc.read_page_raw(mtd, chip, buf, 1, page);
if (ret) {
printf("Failed to read FCB from page %u: %d\n", page, ret);
return ret;
@ -306,7 +306,7 @@ static int write_fcb(struct mtd_info *mtd, void *buf, int block)
printf("Writing FCB to block %08x\n", block);
chip->select_chip(mtd, 0);
ret = chip->write_page(mtd, chip, buf, page, 0, 1);
ret = chip->write_page(mtd, chip, 0, mtd->erasesize, buf, 1, page, 0, 1);
if (ret) {
printf("Failed to write FCB to block %08x: %d\n", block, ret);
}