diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-20 18:03:45 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-11-20 18:03:45 -0500 |
commit | d5bdaf4f68f0590fc481bca54bcaffeb27b75fca (patch) | |
tree | a3c02e146c8c3b33e77e212f15d4851b6febd26b /drivers/rtc/Kconfig | |
parent | dc6ec87d4c77029457a79fd6fa9b6f8304dc8348 (diff) | |
parent | 5cfe8f1ba5eebe6f4b6e5858cdb1a5be4f3272a6 (diff) |
Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mattst88/alpha
Pull alpha updates from Matt Turner:
"It contains a few fixes and some work from Richard to make alpha
emulation under QEMU much more usable"
* 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mattst88/alpha:
alpha: Prevent a NULL ptr dereference in csum_partial_copy.
alpha: perf: fix out-of-bounds array access triggered from raw event
alpha: Use qemu+cserve provided high-res clock and alarm.
alpha: Switch to GENERIC_CLOCKEVENTS
alpha: Enable the rpcc clocksource for single processor
alpha: Reorganize rtc handling
alpha: Primitive support for CPU power down.
alpha: Allow HZ to be configured
alpha: Notice if we're being run under QEMU
alpha: Eliminate compiler warning from memset macro
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 15f166a470a7..007730222116 100644 --- a/drivers/rtc/Kconfig +++ b/drivers/rtc/Kconfig | |||
@@ -626,7 +626,7 @@ comment "Platform RTC drivers" | |||
626 | 626 | ||
627 | config RTC_DRV_CMOS | 627 | config RTC_DRV_CMOS |
628 | tristate "PC-style 'CMOS'" | 628 | tristate "PC-style 'CMOS'" |
629 | depends on X86 || ALPHA || ARM || M32R || ATARI || PPC || MIPS || SPARC64 | 629 | depends on X86 || ARM || M32R || ATARI || PPC || MIPS || SPARC64 |
630 | default y if X86 | 630 | default y if X86 |
631 | help | 631 | help |
632 | Say "yes" here to get direct support for the real time clock | 632 | Say "yes" here to get direct support for the real time clock |
@@ -643,6 +643,14 @@ config RTC_DRV_CMOS | |||
643 | This driver can also be built as a module. If so, the module | 643 | This driver can also be built as a module. If so, the module |
644 | will be called rtc-cmos. | 644 | will be called rtc-cmos. |
645 | 645 | ||
646 | config RTC_DRV_ALPHA | ||
647 | bool "Alpha PC-style CMOS" | ||
648 | depends on ALPHA | ||
649 | default y | ||
650 | help | ||
651 | Direct support for the real-time clock found on every Alpha | ||
652 | system, specifically MC146818 compatibles. If in doubt, say Y. | ||
653 | |||
646 | config RTC_DRV_VRTC | 654 | config RTC_DRV_VRTC |
647 | tristate "Virtual RTC for Intel MID platforms" | 655 | tristate "Virtual RTC for Intel MID platforms" |
648 | depends on X86_INTEL_MID | 656 | depends on X86_INTEL_MID |