From cbaa136e2610a8063ff3bf11ada617201ea4fe48 Mon Sep 17 00:00:00 2001 From: Maximilian Deubel Date: Fri, 14 Apr 2023 17:52:56 +0200 Subject: [PATCH] drivers: i2c: nrfx: add multithreading dependency This patch adds MULTITHREADING as a dependency to the nrfx i2c driver. The driver uses semaphores internally and can result in linker errors if MULTITHREADING is not enabled. Signed-off-by: Maximilian Deubel --- drivers/i2c/Kconfig.nrfx | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/i2c/Kconfig.nrfx b/drivers/i2c/Kconfig.nrfx index beb86533809..b5888149626 100644 --- a/drivers/i2c/Kconfig.nrfx +++ b/drivers/i2c/Kconfig.nrfx @@ -7,6 +7,7 @@ menuconfig I2C_NRFX bool "nRF TWI nrfx drivers" default y depends on SOC_FAMILY_NRF + depends on MULTITHREADING help Enable support for nrfx TWI drivers for nRF MCU series.