2024-05-25 20:25:56

by Dr. David Alan Gilbert

[permalink] [raw]
Subject: [PATCH] mtd: rawnand: cadence: remove unused struct 'ecc_info'

From: "Dr. David Alan Gilbert" <[email protected]>

'ecc_info' has been unused since the original
commit ec4ba01e894d ("mtd: rawnand: Add new Cadence NAND driver to MTD
subsystem").

Remove it.

Signed-off-by: Dr. David Alan Gilbert <[email protected]>
---
drivers/mtd/nand/raw/cadence-nand-controller.c | 5 -----
1 file changed, 5 deletions(-)

diff --git a/drivers/mtd/nand/raw/cadence-nand-controller.c b/drivers/mtd/nand/raw/cadence-nand-controller.c
index 04f84d87c657..ff92c17def83 100644
--- a/drivers/mtd/nand/raw/cadence-nand-controller.c
+++ b/drivers/mtd/nand/raw/cadence-nand-controller.c
@@ -531,11 +531,6 @@ struct cdns_nand_chip {
u8 cs[] __counted_by(nsels);
};

-struct ecc_info {
- int (*calc_ecc_bytes)(int step_size, int strength);
- int max_step_size;
-};
-
static inline struct
cdns_nand_chip *to_cdns_nand_chip(struct nand_chip *chip)
{
--
2.45.1



2024-05-27 12:19:36

by Miquel Raynal

[permalink] [raw]
Subject: Re: [PATCH] mtd: rawnand: cadence: remove unused struct 'ecc_info'

On Sat, 2024-05-25 at 20:25:29 UTC, [email protected] wrote:
> From: "Dr. David Alan Gilbert" <[email protected]>
>
> 'ecc_info' has been unused since the original
> commit ec4ba01e894d ("mtd: rawnand: Add new Cadence NAND driver to MTD
> subsystem").
>
> Remove it.
>
> Signed-off-by: Dr. David Alan Gilbert <[email protected]>

Applied to https://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next, thanks.

Miquel