drivers: rtc: remove leftovers of old alarm drivers

Change-Id: I9954b5dfaa8611b225246a435098f43d5c7fe7dc
This commit is contained in:
Artem Borisov 2017-08-25 17:32:19 +03:00
parent 5d231460e1
commit 305347c3b1
2 changed files with 0 additions and 19 deletions

View File

@ -94,23 +94,6 @@ config RTC_INTF_DEV
If unsure, say Y.
config RTC_INTF_ALARM
bool "Android alarm driver"
depends on RTC_CLASS
default y
help
Provides non-wakeup and rtc backed wakeup alarms based on rtc or
elapsed realtime, and a non-wakeup alarm on the monotonic clock.
Also provides an interface to set the wall time which must be used
for elapsed realtime to work.
config RTC_INTF_ALARM_DEV
bool "Android alarm device"
depends on RTC_INTF_ALARM
default y
help
Exports the alarm interface to user-space.
config RTC_INTF_DEV_UIE_EMUL
bool "RTC UIE emulation on dev interface"
depends on RTC_INTF_DEV

View File

@ -9,8 +9,6 @@ obj-$(CONFIG_RTC_HCTOSYS) += hctosys.o
obj-$(CONFIG_RTC_CLASS) += rtc-core.o
rtc-core-y := class.o interface.o
obj-$(CONFIG_RTC_INTF_ALARM) += alarm.o
obj-$(CONFIG_RTC_INTF_ALARM_DEV) += alarm-dev.o
rtc-core-$(CONFIG_RTC_INTF_DEV) += rtc-dev.o
rtc-core-$(CONFIG_RTC_INTF_PROC) += rtc-proc.o
rtc-core-$(CONFIG_RTC_INTF_SYSFS) += rtc-sysfs.o