diff --git a/drivers/i2c/i2c_ll_stm32_v1_rtio.c b/drivers/i2c/i2c_ll_stm32_v1_rtio.c index 3c0728d79d6..96906e2eed3 100644 --- a/drivers/i2c/i2c_ll_stm32_v1_rtio.c +++ b/drivers/i2c/i2c_ll_stm32_v1_rtio.c @@ -38,6 +38,7 @@ static void i2c_stm32_disable_transfer_interrupts(const struct device *dev) LL_I2C_DisableIT_RX(i2c); LL_I2C_DisableIT_EVT(i2c); LL_I2C_DisableIT_BUF(i2c); + LL_I2C_DisableIT_ERR(i2c); } static void i2c_stm32_enable_transfer_interrupts(const struct device *dev) diff --git a/drivers/i2c/i2c_ll_stm32_v2_rtio.c b/drivers/i2c/i2c_ll_stm32_v2_rtio.c index 519066afad7..7f8093cd366 100644 --- a/drivers/i2c/i2c_ll_stm32_v2_rtio.c +++ b/drivers/i2c/i2c_ll_stm32_v2_rtio.c @@ -37,6 +37,7 @@ static void i2c_stm32_disable_transfer_interrupts(const struct device *dev) LL_I2C_DisableIT_STOP(i2c); LL_I2C_DisableIT_NACK(i2c); LL_I2C_DisableIT_TC(i2c); + LL_I2C_DisableIT_ERR(i2c); } static void i2c_stm32_enable_transfer_interrupts(const struct device *dev)