瀏覽代碼

iio: Allow compile test of GPIO consumers if !GPIOLIB

The GPIO subsystem provides dummy GPIO consumer functions if GPIOLIB is
not enabled. Hence drivers that depend on GPIOLIB, but use GPIO consumer
functionality only, can still be compiled if GPIOLIB is not enabled.

Relax the dependency on GPIOLIB if COMPILE_TEST is enabled, where
appropriate.

Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Jonathan Cameron <jic23@kernel.org>
Cc: linux-iio@vger.kernel.org
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Geert Uytterhoeven 10 年之前
父節點
當前提交
8493585317
共有 2 個文件被更改,包括 3 次插入3 次删除
  1. 1 1
      drivers/iio/humidity/Kconfig
  2. 2 2
      drivers/iio/magnetometer/Kconfig

+ 1 - 1
drivers/iio/humidity/Kconfig

@@ -5,7 +5,7 @@ menu "Humidity sensors"
 
 
 config DHT11
 config DHT11
 	tristate "DHT11 (and compatible sensors) driver"
 	tristate "DHT11 (and compatible sensors) driver"
-	depends on GPIOLIB
+	depends on GPIOLIB || COMPILE_TEST
 	help
 	help
 	  This driver supports reading data via a single interrupt
 	  This driver supports reading data via a single interrupt
 	  generating GPIO line. Currently tested are DHT11 and DHT22.
 	  generating GPIO line. Currently tested are DHT11 and DHT22.

+ 2 - 2
drivers/iio/magnetometer/Kconfig

@@ -8,7 +8,7 @@ menu "Magnetometer sensors"
 config AK8975
 config AK8975
 	tristate "Asahi Kasei AK 3-Axis Magnetometer"
 	tristate "Asahi Kasei AK 3-Axis Magnetometer"
 	depends on I2C
 	depends on I2C
-	depends on GPIOLIB
+	depends on GPIOLIB || COMPILE_TEST
 	help
 	help
 	  Say yes here to build support for Asahi Kasei AK8975, AK8963,
 	  Say yes here to build support for Asahi Kasei AK8975, AK8963,
 	  AK09911 or AK09912 3-Axis Magnetometer.
 	  AK09911 or AK09912 3-Axis Magnetometer.
@@ -19,7 +19,7 @@ config AK8975
 config AK09911
 config AK09911
 	tristate "Asahi Kasei AK09911 3-axis Compass"
 	tristate "Asahi Kasei AK09911 3-axis Compass"
 	depends on I2C
 	depends on I2C
-	depends on GPIOLIB
+	depends on GPIOLIB || COMPILE_TEST
 	select AK8975
 	select AK8975
 	help
 	help
 	  Deprecated: AK09911 is now supported by AK8975 driver.
 	  Deprecated: AK09911 is now supported by AK8975 driver.