summaryrefslogtreecommitdiffstats
path: root/board/synopsys/axs101/nand.c
diff options
context:
space:
mode:
authorVasili Galka <vvv444@gmail.com>2014-08-26 17:50:29 +0300
committerAlexey Brodkin <abrodkin@synopsys.com>2014-08-26 18:54:02 +0400
commit2fea4f5addb40d7551ed754175acbec7f2750005 (patch)
tree00dd72fbb14c3bbd26ff3b70e4a387b4cf237036 /board/synopsys/axs101/nand.c
parent94bcd6b0ac110dfc4bac6ba355bcbab138360c32 (diff)
downloadblackbird-obmc-uboot-2fea4f5addb40d7551ed754175acbec7f2750005.tar.gz
blackbird-obmc-uboot-2fea4f5addb40d7551ed754175acbec7f2750005.zip
axs101: Fix type mismatch warning
Initialization of pointer from integer shall be designated by explicit type cast. Signed-off-by: Vasili Galka <vvv444@gmail.com> Cc: Alexey Brodkin <alexey.brodkin@synopsys.com>
Diffstat (limited to 'board/synopsys/axs101/nand.c')
-rw-r--r--board/synopsys/axs101/nand.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/board/synopsys/axs101/nand.c b/board/synopsys/axs101/nand.c
index c7f90c4400..ff35286c6e 100644
--- a/board/synopsys/axs101/nand.c
+++ b/board/synopsys/axs101/nand.c
@@ -62,8 +62,10 @@ struct nand_bd {
uint32_t buffer_ptr1; /* DES3 */
};
-#define NAND_REG_WRITE(r, v) writel(v, CONFIG_SYS_NAND_BASE + r)
-#define NAND_REG_READ(r) readl(CONFIG_SYS_NAND_BASE + r)
+#define NAND_REG_WRITE(r, v) \
+ writel(v, (volatile void __iomem *)(CONFIG_SYS_NAND_BASE + r))
+#define NAND_REG_READ(r) \
+ readl((const volatile void __iomem *)(CONFIG_SYS_NAND_BASE + r))
static struct nand_bd *bd; /* DMA buffer descriptors */
OpenPOWER on IntegriCloud