diff options
| author | Andi Shyti <andi.shyti@kernel.org> | 2026-07-15 00:25:01 +0200 |
|---|---|---|
| committer | Andi Shyti <andi.shyti@kernel.org> | 2026-07-15 00:25:01 +0200 |
| commit | c844ed7266c9d9d2663f34cfa32d4f66ea3a9119 (patch) | |
| tree | 66251a4d7a81ba79f18cb430b5016f59191c71bb | |
| parent | 1bd8df09f8132558a2cff20f83b51dd625c983d2 (diff) | |
| parent | deb35336b5bfed5db9231b5348bc1514db930797 (diff) | |
| download | linux-next-c844ed7266c9d9d2663f34cfa32d4f66ea3a9119.tar.gz linux-next-c844ed7266c9d9d2663f34cfa32d4f66ea3a9119.zip | |
Merge branch 'i2c/i2c-fixes' into i2c/i2c-next
| -rw-r--r-- | drivers/i2c/busses/i2c-mt65xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/i2c/busses/i2c-mt65xx.c b/drivers/i2c/busses/i2c-mt65xx.c index 126040ca05f1..307925fb78e3 100644 --- a/drivers/i2c/busses/i2c-mt65xx.c +++ b/drivers/i2c/busses/i2c-mt65xx.c @@ -1258,7 +1258,7 @@ static int mtk_i2c_transfer(struct i2c_adapter *adap, i2c->auto_restart = i2c->dev_comp->auto_restart; /* checking if we can skip restart and optimize using WRRD mode */ - if (i2c->auto_restart && num == 2) { + if (num == 2) { if (!(msgs[0].flags & I2C_M_RD) && (msgs[1].flags & I2C_M_RD) && msgs[0].addr == msgs[1].addr) { i2c->auto_restart = 0; |
