Re: [RFC PATCH v2 5/6] mtd: rawnand: micron: add ONFI_FEATURE_ON_DIE_ECC to supported features

From: Boris Brezillon
Date: Tue Jun 19 2018 - 01:41:07 EST


On Tue, 19 Jun 2018 17:31:24 +1200
Chris Packham <chris.packham@xxxxxxxxxxxxxxxxxxx> wrote:

> Add ONFI_FEATURE_ON_DIE_ECC to the set/get features list for Micron
> NAND flash.
>

Fixes: 789157e41a06 ("mtd: rawnand: allow vendors to declare (un)supported features")
Cc: <stable@xxxxxxxxxxxxxxx>

No need to send a new version, I'll add that when queuing the patch.

Miquel, if you're okay, I'm gonna take this patch in the mtd/fixes branch
and let you deal with other patches in this series.

> Signed-off-by: Chris Packham <chris.packham@xxxxxxxxxxxxxxxxxxx>
> ---
> Changes in v2:
> - New
>
> drivers/mtd/nand/raw/nand_micron.c | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/drivers/mtd/nand/raw/nand_micron.c b/drivers/mtd/nand/raw/nand_micron.c
> index e582c9e61715..d1e8f57544a0 100644
> --- a/drivers/mtd/nand/raw/nand_micron.c
> +++ b/drivers/mtd/nand/raw/nand_micron.c
> @@ -66,7 +66,9 @@ static int micron_nand_onfi_init(struct nand_chip *chip)
>
> if (p->supports_set_get_features) {
> set_bit(ONFI_FEATURE_ADDR_READ_RETRY, p->set_feature_list);
> + set_bit(ONFI_FEATURE_ON_DIE_ECC, p->set_feature_list);
> set_bit(ONFI_FEATURE_ADDR_READ_RETRY, p->get_feature_list);
> + set_bit(ONFI_FEATURE_ON_DIE_ECC, p->get_feature_list);
> }
>
> return 0;