From b89000425a0352f92a240e704c6aea9294bc525b Mon Sep 17 00:00:00 2001 From: Ye Li Date: Tue, 31 May 2016 16:32:00 +0800 Subject: MLK-12865 Nand: Fix BCH debug1 register access issue Should have "&" to access the register address, otherwise uboot will hang. Signed-off-by: Ye Li --- drivers/mtd/nand/mxs_nand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers/mtd') diff --git a/drivers/mtd/nand/mxs_nand.c b/drivers/mtd/nand/mxs_nand.c index 43f00a5457..e3cdba8d5c 100644 --- a/drivers/mtd/nand/mxs_nand.c +++ b/drivers/mtd/nand/mxs_nand.c @@ -805,7 +805,7 @@ static int mxs_nand_ecc_read_page(struct mtd_info *mtd, struct nand_chip *nand, if (status[i] == 0xff) { if (is_mx6dqp() || is_soc_type(MXC_SOC_MX7) || is_cpu_type(MXC_CPU_MX6UL)) - if (readl(bch_regs->hw_bch_debug1)) + if (readl(&bch_regs->hw_bch_debug1)) flag = 1; continue; } -- cgit v1.2.3