diff options
| -rw-r--r-- | drivers/mtd/nand/gpmi-nand/gpmi-nand.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c index 31032b17dae5..16a533a78edd 100644 --- a/drivers/mtd/nand/gpmi-nand/gpmi-nand.c +++ b/drivers/mtd/nand/gpmi-nand/gpmi-nand.c | |||
| @@ -285,9 +285,8 @@ static int legacy_set_geometry(struct gpmi_nand_data *this) | |||
| 285 | geo->ecc_strength = get_ecc_strength(this); | 285 | geo->ecc_strength = get_ecc_strength(this); |
| 286 | if (!gpmi_check_ecc(this)) { | 286 | if (!gpmi_check_ecc(this)) { |
| 287 | dev_err(this->dev, | 287 | dev_err(this->dev, |
| 288 | "We can not support this nand chip." | 288 | "required ecc strength of the NAND chip: %d is not supported by the GPMI controller (%d)\n", |
| 289 | " Its required ecc strength(%d) is beyond our" | 289 | geo->ecc_strength, |
| 290 | " capability(%d).\n", geo->ecc_strength, | ||
| 291 | this->devdata->bch_max_ecc_strength); | 290 | this->devdata->bch_max_ecc_strength); |
| 292 | return -EINVAL; | 291 | return -EINVAL; |
| 293 | } | 292 | } |
| @@ -1597,8 +1596,9 @@ static int mx23_boot_init(struct gpmi_nand_data *this) | |||
| 1597 | dev_dbg(dev, "Transcribing mark in block %u\n", block); | 1596 | dev_dbg(dev, "Transcribing mark in block %u\n", block); |
| 1598 | ret = chip->block_markbad(mtd, byte); | 1597 | ret = chip->block_markbad(mtd, byte); |
| 1599 | if (ret) | 1598 | if (ret) |
| 1600 | dev_err(dev, "Failed to mark block bad with " | 1599 | dev_err(dev, |
| 1601 | "ret %d\n", ret); | 1600 | "Failed to mark block bad with ret %d\n", |
| 1601 | ret); | ||
| 1602 | } | 1602 | } |
| 1603 | } | 1603 | } |
| 1604 | 1604 | ||
