linux-i3c.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] i3c: dw: Fix dw_i3c_master_disable controller by using correct mask
@ 2019-04-08 11:13 Vitor Soares
  2019-04-08 19:29 ` Sasha Levin
  2019-04-08 23:20 ` [PATCH v3] " Vitor Soares
  0 siblings, 2 replies; 3+ messages in thread
From: Vitor Soares @ 2019-04-08 11:13 UTC (permalink / raw)
  To: linux-i3c; +Cc: joao.pinto, Boris Brezillon, stable, Vitor Soares

The controller was being disabled incorrectly. The correct way is to clear
the DEV_CTRL_ENABLE bit.

Fix this by by clearing this bit.

Signed-off-by: Vitor Soares <vitor.soares@synopsys.com>

Cc: Boris Brezillon <bbrezillon@kernel.org>
Cc: <stable@vger.kernel.org>
---
Changes v1 to v2:
  Fix commit Message
  Add Cc: <stable@vger.kernel.org>

 drivers/i3c/master/dw-i3c-master.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/i3c/master/dw-i3c-master.c b/drivers/i3c/master/dw-i3c-master.c
index 5927922..10c26ff 100644
--- a/drivers/i3c/master/dw-i3c-master.c
+++ b/drivers/i3c/master/dw-i3c-master.c
@@ -300,7 +300,7 @@ to_dw_i3c_master(struct i3c_master_controller *master)
 
 static void dw_i3c_master_disable(struct dw_i3c_master *master)
 {
-	writel(readl(master->regs + DEVICE_CTRL) & DEV_CTRL_ENABLE,
+	writel(readl(master->regs + DEVICE_CTRL) & ~DEV_CTRL_ENABLE,
 	       master->regs + DEVICE_CTRL);
 }
 
-- 
2.7.4


_______________________________________________
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c

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

end of thread, other threads:[~2019-04-13 15:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-08 11:13 [PATCH v2] i3c: dw: Fix dw_i3c_master_disable controller by using correct mask Vitor Soares
2019-04-08 19:29 ` Sasha Levin
2019-04-08 23:20 ` [PATCH v3] " Vitor Soares

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).