[PATCH 10/12] mtd: nand: read ECC algorithm from the new field
Boris Brezillon
boris.brezillon at free-electrons.com
Sat Apr 16 01:11:57 PDT 2016
On Sat, 16 Apr 2016 09:58:07 +0200
Boris Brezillon <boris.brezillon at free-electrons.com> wrote:
> On Fri, 15 Apr 2016 21:54:10 +0200
> Rafał Miłecki <zajec5 at gmail.com> wrote:
>
> > Now we have all drivers properly setting this new field we can start
> > using it and proceed with deprecating NAND_ECC_SOFT_BCH.
> >
> > Signed-off-by: Rafał Miłecki <zajec5 at gmail.com>
> > ---
> > drivers/mtd/nand/nand_base.c | 98 ++++++++++++++++++++++++--------------------
> > 1 file changed, 53 insertions(+), 45 deletions(-)
> >
[...]
> > @@ -4248,51 +4248,59 @@ int nand_scan_tail(struct mtd_info *mtd)
> > ecc->algo = NAND_ECC_HAMMING;
> >
> > case NAND_ECC_SOFT:
> > - ecc->calculate = nand_calculate_ecc;
> > - ecc->correct = nand_correct_data;
> > - ecc->read_page = nand_read_page_swecc;
> > - ecc->read_subpage = nand_read_subpage;
> > - ecc->write_page = nand_write_page_swecc;
> > - ecc->read_page_raw = nand_read_page_raw;
> > - ecc->write_page_raw = nand_write_page_raw;
> > - ecc->read_oob = nand_read_oob_std;
> > - ecc->write_oob = nand_write_oob_std;
> > - if (!ecc->size)
> > - ecc->size = 256;
> > - ecc->bytes = 3;
> > - ecc->strength = 1;
> > - break;
> > -
> > case NAND_ECC_SOFT_BCH:
>
> Shouldn't we drop this case?
Nevermind, I see you're dropping it in the last patch.
--
Boris Brezillon, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
More information about the linux-mtd
mailing list