From: Rafał Miłecki Date: Sun, 17 Apr 2016 20:53:01 +0000 (+0200) Subject: staging: mt29f_spinand: set ECC algorithm explicitly X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=cc71538fab2f5470775b060c59eddafe8ffa2674;p=linux-beck.git 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: Rafał Miłecki Acked-by: Greg Kroah-Hartman Signed-off-by: Boris Brezillon --- diff --git a/drivers/staging/mt29f_spinand/mt29f_spinand.c b/drivers/staging/mt29f_spinand/mt29f_spinand.c index f50369941590..e389009fca42 100644 --- a/drivers/staging/mt29f_spinand/mt29f_spinand.c +++ b/drivers/staging/mt29f_spinand/mt29f_spinand.c @@ -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__);