diff options
| author | Grygorii Strashko <[email protected]> | 2017-06-26 19:13:01 -0500 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-07-11 22:41:49 -0400 |
| commit | 88b81bf7927c821d07e5a4877665ed5f618c8cb9 (patch) | |
| tree | fb62941aefc0c5c551f2bfb72ed61e9e749fd720 | |
| parent | 750b34c9ae783819822ab0ccf07b4d2dc697a874 (diff) | |
mtd: nand: drv: use get_nand_dev_by_index()
As part of preparation for nand DM conversion the new API has been
introduced to remove direct access to nand_info array. So, use it here
instead of accessing to nand_info array directly
Signed-off-by: Grygorii Strashko <[email protected]>
| -rw-r--r-- | drivers/mtd/nand/fsmc_nand.c | 2 | ||||
| -rw-r--r-- | drivers/mtd/nand/zynq_nand.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/drivers/mtd/nand/fsmc_nand.c b/drivers/mtd/nand/fsmc_nand.c index a1f2cbae331..d5d10562936 100644 --- a/drivers/mtd/nand/fsmc_nand.c +++ b/drivers/mtd/nand/fsmc_nand.c @@ -409,7 +409,7 @@ int fsmc_nand_switch_ecc(uint32_t eccstrength) * Nomadik SoC is currently supporting this fsmc_nand_switch_ecc() * function, as it doesn't need to switch to a different ECC layout. */ - mtd = nand_info[nand_curr_device]; + mtd = get_nand_dev_by_index(nand_curr_device); nand = mtd_to_nand(mtd); /* Setup the ecc configurations again */ diff --git a/drivers/mtd/nand/zynq_nand.c b/drivers/mtd/nand/zynq_nand.c index cb3340d9b09..948f05984ca 100644 --- a/drivers/mtd/nand/zynq_nand.c +++ b/drivers/mtd/nand/zynq_nand.c @@ -1008,7 +1008,7 @@ static int zynq_nand_init(struct nand_chip *nand_chip, int devnum) } xnand->nand_base = (void __iomem *)ZYNQ_NAND_BASEADDR; - mtd = (struct mtd_info *)&nand_info[0]; + mtd = get_nand_dev_by_index(0); nand_chip->priv = xnand; mtd->priv = nand_chip; |
