ar71xx: fix drivers/mtd/nand/ar934x_nfc.c

Fix the incorrect usage of ar934x_nfc_write_page and ar934x_nfc_write_page_raw.
Add *page* in the argument list and remove the local variable.

Signed-off-by: Paul Wassi <p.wassi@gmx.at>
This commit is contained in:
Paul Wassi 2016-11-16 07:25:10 +01:00 committed by John Crispin
parent 16adf49620
commit 6e65576f2d

View file

@ -983,14 +983,11 @@ ar934x_nfc_read_page(struct mtd_info *mtd, struct nand_chip *chip,
static int static int
ar934x_nfc_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip, ar934x_nfc_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
const u8 *buf, int oob_required) const u8 *buf, int oob_required, int page)
{ {
struct ar934x_nfc *nfc = mtd_to_ar934x_nfc(mtd); struct ar934x_nfc *nfc = mtd_to_ar934x_nfc(mtd);
int page;
int len; int len;
page = nfc->seqin_page_addr;
nfc_dbg(nfc, "write_page_raw: page:%d oob:%d\n", page, oob_required); nfc_dbg(nfc, "write_page_raw: page:%d oob:%d\n", page, oob_required);
memcpy(nfc->buf, buf, mtd->writesize); memcpy(nfc->buf, buf, mtd->writesize);
@ -1006,14 +1003,11 @@ ar934x_nfc_write_page_raw(struct mtd_info *mtd, struct nand_chip *chip,
static int static int
ar934x_nfc_write_page(struct mtd_info *mtd, struct nand_chip *chip, ar934x_nfc_write_page(struct mtd_info *mtd, struct nand_chip *chip,
const u8 *buf, int oob_required) const u8 *buf, int oob_required, int page)
{ {
struct ar934x_nfc *nfc = mtd_to_ar934x_nfc(mtd); struct ar934x_nfc *nfc = mtd_to_ar934x_nfc(mtd);
int page;
int err; int err;
page = nfc->seqin_page_addr;
nfc_dbg(nfc, "write_page: page:%d oob:%d\n", page, oob_required); nfc_dbg(nfc, "write_page: page:%d oob:%d\n", page, oob_required);
/* write OOB first */ /* write OOB first */