diff options
| author | Josh Wu <[email protected]> | 2016-01-25 14:06:34 +0800 |
|---|---|---|
| committer | Andreas Bießmann <[email protected]> | 2016-01-27 13:58:59 +0100 |
| commit | 4c6a6ea3e11844f1b7242d7ed4468bb80ae81369 (patch) | |
| tree | 50ba3ea3447ad2334be29dc204081db8ee82b954 /drivers | |
| parent | 3a2056719968c82fb0b5e079b47a146f68330879 (diff) | |
atmel_nand: add '\n' in the end of error message for better display
Also align the open parenthesis.
Signed-off-by: Josh Wu <[email protected]>
Signed-off-by: Wenyou Yang <[email protected]>
Reviewed-by: Andreas Bießmann <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/mtd/nand/atmel_nand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/atmel_nand.c b/drivers/mtd/nand/atmel_nand.c index e179f742297..852883bfb2e 100644 --- a/drivers/mtd/nand/atmel_nand.c +++ b/drivers/mtd/nand/atmel_nand.c @@ -821,8 +821,8 @@ static int atmel_pmecc_nand_init_params(struct nand_chip *nand, * from ONFI. */ if (pmecc_choose_ecc(host, nand, &cap, §or_size)) { - dev_err(host->dev, "The NAND flash's ECC requirement(ecc_bits: %d, sector_size: %d) are not support!", - cap, sector_size); + dev_err(host->dev, "Required ECC %d bits in %d bytes not supported!\n", + cap, sector_size); return -EINVAL; } |
