public inbox for linux-mtd@lists.infradead.org
 help / color / mirror / Atom feed
* [PATCH] mtd: nand: mtk: deselect the chip that was selected in resume function
@ 2017-11-01  6:19 xiaolei.li
  2017-11-01 10:00 ` Boris Brezillon
  0 siblings, 1 reply; 3+ messages in thread
From: xiaolei.li @ 2017-11-01  6:19 UTC (permalink / raw)
  To: boris.brezillon, computersforpeace
  Cc: dwmw2, linux-mtd, linux-mediatek, rogercc.lin, srv_heupstream,
	xiaolei.li, bayi.cheng

From: Xiaolei Li <xiaolei.li@mediatek.com>

It is necessary to deselect the chip if it was selected before.
But now we only select chips when resume nand driver.
So, deselect the chip after doing nand reset.

Signed-off-by: Xiaolei Li <xiaolei.li@mediatek.com>
---
 drivers/mtd/nand/mtk_nand.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/mtd/nand/mtk_nand.c b/drivers/mtd/nand/mtk_nand.c
index d86a7d1..a8bf61a 100644
--- a/drivers/mtd/nand/mtk_nand.c
+++ b/drivers/mtd/nand/mtk_nand.c
@@ -1557,6 +1557,7 @@ static int mtk_nfc_resume(struct device *dev)
 		for (i = 0; i < chip->nsels; i++) {
 			nand->select_chip(mtd, i);
 			nand->cmdfunc(mtd, NAND_CMD_RESET, -1, -1);
+			nand->select_chip(mtd, -1);
 		}
 	}
 
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-11-01 10:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-11-01  6:19 [PATCH] mtd: nand: mtk: deselect the chip that was selected in resume function xiaolei.li
2017-11-01 10:00 ` Boris Brezillon
2017-11-01 10:07   ` xiaolei li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox