sunxi: fix build of rtc package when module not available

If the Kconfig option CONFIG_RTC_DRV_SUNXI is not selected this package
should be be build.

Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
This commit is contained in:
Hauke Mehrtens 2017-07-15 22:51:25 +02:00
parent b9a35920bf
commit 4b81bb13f4
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ define KernelPackage/rtc-sunxi
DEPENDS:=@TARGET_sunxi
$(call AddDepends/rtc)
KCONFIG:= \
CONFIG_RTC_CLASS=y \
CONFIG_RTC_DRV_SUNXI=m
CONFIG_RTC_DRV_SUNXI \
CONFIG_RTC_CLASS=y
FILES:=$(LINUX_DIR)/drivers/rtc/rtc-sunxi.ko
AUTOLOAD:=$(call AutoLoad,50,rtc-sunxi)
endef