kmod-bmp085: add dependency on !LINUX_3_18 !LINUX_4_1

93d5629a introduced a build failure on older platforms (<4.4)
because bmp085 is a boolean and not a tristate.

Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
This commit is contained in:
Alexander Couzens 2016-06-29 02:40:34 +02:00
parent 93d5629a27
commit 19aae09f5f

View file

@ -995,7 +995,7 @@ $(eval $(call KernelPackage,echo))
define KernelPackage/bmp085
SUBMENU:=$(OTHER_MENU)
TITLE:=BMP085/BMP18x pressure sensor
DEPENDS:= +kmod-regmap
DEPENDS:= +kmod-regmap @!LINUX_3_18 @!LINUX_4_1
KCONFIG:= CONFIG_BMP085
FILES:= $(LINUX_DIR)/drivers/misc/bmp085.ko
endef