提交 667af369 编写于 作者: H Heiko Schocher 提交者: Tom Rini

spl, mtd, nand, atmel_nand: invert device ready pin logic

device ready pin is signalling that the device is ready on state 1
not on 0. Simmiliar as it is in drivers/mtd/nand/nand_spl_simple.c
Signed-off-by: NHeiko Schocher <hs@denx.de>
Reviewed-by: NAndreas Bießmann <andreas.devel@googlemail.com>
Reviewed-by: NBo Shen <voice.shen@atmel.com>
Acked-by: NScott Wood <scottwood@freescale.com>
Signed-off-by: NAndreas Bießmann <andreas.devel@googlemail.com>
上级 4dfd3605
......@@ -1188,7 +1188,7 @@ static int nand_command(int block, int page, uint32_t offs, u8 cmd)
void (*hwctrl)(struct mtd_info *mtd, int cmd,
unsigned int ctrl) = this->cmd_ctrl;
while (this->dev_ready(&mtd))
while (!this->dev_ready(&mtd))
;
if (cmd == NAND_CMD_READOOB) {
......@@ -1213,7 +1213,7 @@ static int nand_command(int block, int page, uint32_t offs, u8 cmd)
hwctrl(&mtd, NAND_CMD_READSTART, NAND_CTRL_CLE | NAND_CTRL_CHANGE);
hwctrl(&mtd, NAND_CMD_NONE, NAND_NCE | NAND_CTRL_CHANGE);
while (this->dev_ready(&mtd))
while (!this->dev_ready(&mtd))
;
return 0;
......@@ -1353,7 +1353,7 @@ int at91_nand_wait_ready(struct mtd_info *mtd)
udelay(this->chip_delay);
return 0;
return 1;
}
int board_nand_init(struct nand_chip *nand)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册