summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorAniket <aniketmaurya@google.com>2024-06-11 14:26:50 +0300
committerAlexandre Belloni <alexandre.belloni@bootlin.com>2024-07-26 15:21:29 +0300
commit8f2cb0327938c786cede21a542fb538ff243a03a (patch)
tree6aac2c8a9004c18065fce5e0a2b681b6a19ec91a /drivers
parentbe90ae1ba14a83962b33c4d4c854ef081186b0e4 (diff)
downloadlinux-8f2cb0327938c786cede21a542fb538ff243a03a.tar.xz
i3c: dw: Fix clearing queue thld
QUEUE_THLD_CTRL_IBI_STAT_MASK is repeated twice. Replace with QUEUE_THLD_CTRL_IBI_DATA_MASK. Signed-off-by: Aniket <aniketmaurya@google.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/i3c/master/dw-i3c-master.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i3c/master/dw-i3c-master.c b/drivers/i3c/master/dw-i3c-master.c
index 0ec00e644bd4..0ba4960aa77b 100644
--- a/drivers/i3c/master/dw-i3c-master.c
+++ b/drivers/i3c/master/dw-i3c-master.c
@@ -631,7 +631,7 @@ static int dw_i3c_master_bus_init(struct i3c_master_controller *m)
thld_ctrl = readl(master->regs + QUEUE_THLD_CTRL);
thld_ctrl &= ~(QUEUE_THLD_CTRL_RESP_BUF_MASK |
QUEUE_THLD_CTRL_IBI_STAT_MASK |
- QUEUE_THLD_CTRL_IBI_STAT_MASK);
+ QUEUE_THLD_CTRL_IBI_DATA_MASK);
thld_ctrl |= QUEUE_THLD_CTRL_IBI_STAT(1) |
QUEUE_THLD_CTRL_IBI_DATA(31);
writel(thld_ctrl, master->regs + QUEUE_THLD_CTRL);