[PATCH] usb: typec: tipd: drop double register read in tps6598x_interrupt

From: Peter Korsgaard

Date: Thu Nov 06 2025 - 11:49:23 EST


Commit 409c1cfb5a80 ("usb: typec: tipd: fix event checking for tps6598x")
added (by accident?) a double read of the TPS_REG_INT_EVENT1 register. Drop
that.

Signed-off-by: Peter Korsgaard <peter@xxxxxxxxxxxxx>
---
drivers/usb/typec/tipd/core.c | 2 --
1 file changed, 2 deletions(-)

diff --git a/drivers/usb/typec/tipd/core.c b/drivers/usb/typec/tipd/core.c
index 2b1049c9a6f3..2d4fcf62c200 100644
--- a/drivers/usb/typec/tipd/core.c
+++ b/drivers/usb/typec/tipd/core.c
@@ -994,8 +994,6 @@ static irqreturn_t tps6598x_interrupt(int irq, void *data)
TPS_VERSION_HW_VERSION(version) == TPS_VERSION_HW_65987_8_DK)
intev_len = TPS_65987_8_INTEVENT_LEN;

- ret = tps6598x_block_read(tps, TPS_REG_INT_EVENT1, event1, intev_len);
-
ret = tps6598x_block_read(tps, TPS_REG_INT_EVENT1, event1, intev_len);
if (ret) {
dev_err(tps->dev, "%s: failed to read event1\n", __func__);
--
2.39.5