Commit fb8c3810 authored by Tudor Ambarus's avatar Tudor Ambarus Committed by Miquel Raynal
Browse files

mtd: rawnand: Don't overwrite the error code from nand_set_ecc_soft_ops()



The error code received from nand_set_ecc_soft_ops() was overwritten,
drop this redundant assignment and use the error code received from
the callee.

Signed-off-by: default avatarTudor Ambarus <tudor.ambarus@microchip.com>
Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Link: https://lore.kernel.org/linux-mtd/20200917075213.532161-4-tudor.ambarus@microchip.com
parent 6e881279
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -5698,10 +5698,8 @@ static int nand_scan_tail(struct nand_chip *chip)

	case NAND_ECC_ENGINE_TYPE_SOFT:
		ret = nand_set_ecc_soft_ops(chip);
		if (ret) {
			ret = -EINVAL;
		if (ret)
			goto err_nand_manuf_cleanup;
		}
		break;

	case NAND_ECC_ENGINE_TYPE_ON_DIE: