From 1d46332b39ec87fd2549b78ab5edcf51485b7a5d Mon Sep 17 00:00:00 2001 From: Avi Green Date: Thu, 3 Feb 2022 13:50:07 +0200 Subject: [PATCH] bmi160: Added I2C to Kconfig dependency bmi160 driver code supports i2c, but is not selectable by Kconfig Signed-off-by: Avi Green --- drivers/sensor/bmi160/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/sensor/bmi160/Kconfig b/drivers/sensor/bmi160/Kconfig index acc76094d0d..5889311b1fe 100644 --- a/drivers/sensor/bmi160/Kconfig +++ b/drivers/sensor/bmi160/Kconfig @@ -5,7 +5,7 @@ menuconfig BMI160 bool "Bosch BMI160 inertial measurement unit" - depends on SPI + depends on SPI || I2C help Enable Bosch BMI160 inertial measurement unit that provides acceleration and angular rate measurements.