mtd: eLBC NAND: give more verbose output on error
We want error information even if the kernel hasn't been built for verbose debugging. Signed-off-by: Scott Wood <scottwood@freescale.com> Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
This commit is contained in:
committed by
David Woodhouse
parent
476459a6cf
commit
c1317f7163
@@ -237,12 +237,15 @@ static int fsl_elbc_run_command(struct mtd_info *mtd)
|
|||||||
|
|
||||||
ctrl->use_mdr = 0;
|
ctrl->use_mdr = 0;
|
||||||
|
|
||||||
dev_vdbg(ctrl->dev,
|
if (ctrl->status != LTESR_CC) {
|
||||||
"fsl_elbc_run_command: stat=%08x mdr=%08x fmr=%08x\n",
|
dev_info(ctrl->dev,
|
||||||
ctrl->status, ctrl->mdr, in_be32(&lbc->fmr));
|
"command failed: fir %x fcr %x status %x mdr %x\n",
|
||||||
|
in_be32(&lbc->fir), in_be32(&lbc->fcr),
|
||||||
|
ctrl->status, ctrl->mdr);
|
||||||
|
return -EIO;
|
||||||
|
}
|
||||||
|
|
||||||
/* returns 0 on success otherwise non-zero) */
|
return 0;
|
||||||
return ctrl->status == LTESR_CC ? 0 : -EIO;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static void fsl_elbc_do_read(struct nand_chip *chip, int oob)
|
static void fsl_elbc_do_read(struct nand_chip *chip, int oob)
|
||||||
|
Reference in New Issue
Block a user