Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cc71538f authored by Rafał Miłecki's avatar Rafał Miłecki Committed by Boris Brezillon
Browse files

staging: mt29f_spinand: set ECC algorithm explicitly



This is part of process deprecating NAND_ECC_SOFT_BCH (and switching to
enum nand_ecc_algo).

Signed-off-by: default avatarRafał Miłecki <zajec5@gmail.com>
Acked-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarBoris Brezillon <boris.brezillon@free-electrons.com>
parent 40438a1e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -900,6 +900,7 @@ static int spinand_probe(struct spi_device *spi_nand)
	chip->ecc.write_page = spinand_write_page_hwecc;
#else
	chip->ecc.mode	= NAND_ECC_SOFT;
	chip->ecc.algo	= NAND_ECC_HAMMING;
	if (spinand_disable_ecc(spi_nand) < 0)
		dev_info(&spi_nand->dev, "%s: disable ecc failed!\n",
			 __func__);