From 712cbc4f23fa4276ae652b8767fd5a0646fab1da 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 (cherry picked from commit 0b65071afaae9d6a49fb7dda2902f5c8bcd678c2) --- drivers/mtd/nand/mxs_nand.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'drivers') diff --git a/drivers/mtd/nand/mxs_nand.c b/drivers/mtd/nand/mxs_nand.c index ca73de6..34c0310 100644 --- a/drivers/mtd/nand/mxs_nand.c +++ b/drivers/mtd/nand/mxs_nand.c @@ -806,7 +806,7 @@ static int mxs_nand_ecc_read_page(struct mtd_info *mtd, struct nand_chip *nand, if (status[i] == 0xff) { if (is_mx6dqp() || is_mx7() || is_mx6ul()) - if (readl(bch_regs->hw_bch_debug1)) + if (readl(&bch_regs->hw_bch_debug1)) flag = 1; continue; } -- cgit v1.1