Преглед на файлове

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 <[email protected]>
Hauke Mehrtens преди 8 години
родител
ревизия
4b81bb13f4
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      target/linux/sunxi/modules.mk

+ 2 - 2
target/linux/sunxi/modules.mk

@@ -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