From: Boris Brezillon Date: Mon, 9 Jul 2018 20:09:38 +0000 (+0200) Subject: mtd: rawnand: fsl_ifc: Add an __iomem specifier on eccstat_regs X-Git-Tag: Ubuntu-5.2.0-15.16~3831^2~2^2~77 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=62a316088dd07b31587e1874f2f9e4d096ef0da1;p=mirror_ubuntu-eoan-kernel.git mtd: rawnand: fsl_ifc: Add an __iomem specifier on eccstat_regs The local eccstat_regs variable in fsl_ifc_run_command() is missing an __iomem specifier, and sparce complains about that. Signed-off-by: Boris Brezillon Signed-off-by: Miquel Raynal --- diff --git a/drivers/mtd/nand/raw/fsl_ifc_nand.c b/drivers/mtd/nand/raw/fsl_ifc_nand.c index 382b67e97174..75d3c951f61a 100644 --- a/drivers/mtd/nand/raw/fsl_ifc_nand.c +++ b/drivers/mtd/nand/raw/fsl_ifc_nand.c @@ -225,7 +225,7 @@ static void fsl_ifc_run_command(struct mtd_info *mtd) int bufnum = nctrl->page & priv->bufnum_mask; int sector_start = bufnum * chip->ecc.steps; int sector_end = sector_start + chip->ecc.steps - 1; - __be32 *eccstat_regs; + __be32 __iomem *eccstat_regs; eccstat_regs = ifc->ifc_nand.nand_eccstat; eccstat = ifc_in32(&eccstat_regs[sector_start / 4]);