Commit e3554b10 authored by Miquel Raynal's avatar Miquel Raynal
Browse files

mtd: nand: Add a helper to retrieve the number of ECC steps



This operation is very common and deserves a helper. It of course only
works after the ECC engine initialization.

Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
Tested-by: Adam Ford <aford173@gmail.com> #logicpd Torpedo
Link: https://lore.kernel.org/linux-mtd/20210127203020.9574-5-miquel.raynal@bootlin.com
parent 12e0df0c
Loading
Loading
Loading
Loading
+10 −0
Original line number Original line Diff line number Diff line
@@ -587,6 +587,16 @@ nanddev_get_ecc_conf(struct nand_device *nand)
	return &nand->ecc.ctx.conf;
	return &nand->ecc.ctx.conf;
}
}


/**
 * nanddev_get_ecc_nsteps() - Extract the number of ECC steps
 * @nand: NAND device
 */
static inline unsigned int
nanddev_get_ecc_nsteps(struct nand_device *nand)
{
	return nand->ecc.ctx.nsteps;
}

/**
/**
 * nanddev_get_ecc_requirements() - Extract the ECC requirements from a NAND
 * nanddev_get_ecc_requirements() - Extract the ECC requirements from a NAND
 *                                  device
 *                                  device