mirror of
https://github.com/hardkernel/linux.git
synced 2026-03-25 20:10:23 +09:00
i3c: master: svc: fix check wrong status register in irq handler
commit 225d5ef048c4ed01a475c95d94833bd7dd61072d upstream.
svc_i3c_master_irq_handler() wrongly checks register SVC_I3C_MINTMASKED. It
should be SVC_I3C_MSTATUS.
Fixes: dd3c52846d ("i3c: master: svc: Add Silvaco I3C master driver")
Cc: <stable@vger.kernel.org>
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
Signed-off-by: Frank Li <Frank.Li@nxp.com>
Link: https://lore.kernel.org/r/20231023161658.3890811-5-Frank.Li@nxp.com
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
5ba77b6b45
commit
da754f92fc
@@ -438,7 +438,7 @@ reenable_ibis:
|
||||
static irqreturn_t svc_i3c_master_irq_handler(int irq, void *dev_id)
|
||||
{
|
||||
struct svc_i3c_master *master = (struct svc_i3c_master *)dev_id;
|
||||
u32 active = readl(master->regs + SVC_I3C_MINTMASKED);
|
||||
u32 active = readl(master->regs + SVC_I3C_MSTATUS);
|
||||
|
||||
if (!SVC_I3C_MSTATUS_SLVSTART(active))
|
||||
return IRQ_NONE;
|
||||
|
||||
Reference in New Issue
Block a user