From: Benoît Thébaudeau Date: Thu, 11 Apr 2013 09:35:40 +0000 (+0000) Subject: nand: mxc: Fix debug trace in mxc_nand_read_oob_syndrome() X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=78ee7b1729f69215a07c44b9895f69bd9a4b58a2;p=people%2Fms%2Fu-boot.git nand: mxc: Fix debug trace in mxc_nand_read_oob_syndrome() The page number indicated in the debug trace of mxc_nand_read_oob_syndrome() did not match the page being worked on. By the way, replace the GCC-specific __FUNCTION__ with __func__. Signed-off-by: Benoît Thébaudeau Acked-by: Scott Wood --- diff --git a/drivers/mtd/nand/mxc_nand.c b/drivers/mtd/nand/mxc_nand.c index db72cdc7b9..62d6965063 100644 --- a/drivers/mtd/nand/mxc_nand.c +++ b/drivers/mtd/nand/mxc_nand.c @@ -409,7 +409,7 @@ static int mxc_nand_read_oob_syndrome(struct mtd_info *mtd, MTDDEBUG(MTD_DEBUG_LEVEL0, "%s: Reading OOB area of page %u to oob %p\n", - __FUNCTION__, host->page_addr, buf); + __func__, page, buf); chip->cmdfunc(mtd, NAND_CMD_READOOB, mtd->writesize, page); for (i = 0; i < chip->ecc.steps; i++) {