diff options
author | Arve Hjønnevåg <arve@android.com> | 2009-05-04 14:09:15 -0700 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2011-06-14 09:08:44 -0700 |
commit | fa56540eb5aa4ce7c58042ef37d24353cc7713b1 (patch) | |
tree | 51207e921b7c43a0663f3724345c2057c9b4133c /drivers/rtc/Kconfig | |
parent | b54b33d0b9c3418a24c35faaa494efbfa2356005 (diff) | |
download | kernel_samsung_aries-fa56540eb5aa4ce7c58042ef37d24353cc7713b1.zip kernel_samsung_aries-fa56540eb5aa4ce7c58042ef37d24353cc7713b1.tar.gz kernel_samsung_aries-fa56540eb5aa4ce7c58042ef37d24353cc7713b1.tar.bz2 |
rtc: alarm: Add in-kernel alarm interface
Drivers can now create alarms that will use an hrtimer while the
system is running and the rtc to wake up from suspend.
Signed-off-by: Arve Hjønnevåg <arve@android.com>
Diffstat (limited to 'drivers/rtc/Kconfig')
-rw-r--r-- | drivers/rtc/Kconfig | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig index cc0f9b1..27c3774 100644 --- a/drivers/rtc/Kconfig +++ b/drivers/rtc/Kconfig @@ -113,9 +113,17 @@ config RTC_INTF_ALARM 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 ioctl to set the wall time which must be used + 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_DRV_TEST tristate "Test driver/device" help |