mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 13:06:59 +02:00
i3c: master: svc: fix check wrong status register in irq handler
commit225d5ef048upstream. 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:
parent
93ba03b2a9
commit
ac33f25974
|
|
@ -477,7 +477,7 @@ static void svc_i3c_master_ibi_work(struct work_struct *work)
|
|||
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;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user