diff options
author | Vipin Kumar <vipin.kumar@st.com> | 2012-10-09 06:44:43 -0400 |
---|---|---|
committer | Artem Bityutskiy <artem.bityutskiy@linux.intel.com> | 2012-11-15 08:37:47 -0500 |
commit | 605add7db6e84ff78f7ca96541c0880f0166e387 (patch) | |
tree | 3d21e28e2a8ecec701b8540ba232e3762ae89bdb /drivers/mtd/nand/fsmc_nand.c | |
parent | db6364a650edcb076786092c7f85f1e1cdae8b20 (diff) |
mtd: fsmc_nand: change the type for regs to void __iomem *
Signed-off-by: Vipin Kumar <vipin.kumar@st.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Artem Bityutskiy <artem.bityutskiy@linux.intel.com>
Diffstat (limited to 'drivers/mtd/nand/fsmc_nand.c')
-rw-r--r-- | drivers/mtd/nand/fsmc_nand.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/fsmc_nand.c b/drivers/mtd/nand/fsmc_nand.c index cb8645087151..a5bc3d5511e3 100644 --- a/drivers/mtd/nand/fsmc_nand.c +++ b/drivers/mtd/nand/fsmc_nand.c | |||
@@ -361,7 +361,7 @@ static void fsmc_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl) | |||
361 | struct nand_chip *this = mtd->priv; | 361 | struct nand_chip *this = mtd->priv; |
362 | struct fsmc_nand_data *host = container_of(mtd, | 362 | struct fsmc_nand_data *host = container_of(mtd, |
363 | struct fsmc_nand_data, mtd); | 363 | struct fsmc_nand_data, mtd); |
364 | void *__iomem *regs = host->regs_va; | 364 | void __iomem *regs = host->regs_va; |
365 | unsigned int bank = host->bank; | 365 | unsigned int bank = host->bank; |
366 | 366 | ||
367 | if (ctrl & NAND_CTRL_CHANGE) { | 367 | if (ctrl & NAND_CTRL_CHANGE) { |