diff options
author | H. Peter Anvin <hpa@zytor.com> | 2011-07-21 13:34:05 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2011-07-21 13:34:05 -0700 |
commit | ae7bd11b471931752e5609094ca0a49386590524 (patch) | |
tree | 4c5ac21a847c6eb25259c63e11b2d8dc9f4defac /arch/x86/Kconfig | |
parent | 8c400f6ce068366bc3517f1036bb99169cfec9cd (diff) | |
download | linux-3.10-ae7bd11b471931752e5609094ca0a49386590524.tar.gz linux-3.10-ae7bd11b471931752e5609094ca0a49386590524.tar.bz2 linux-3.10-ae7bd11b471931752e5609094ca0a49386590524.zip |
clocksource: Change __ARCH_HAS_CLOCKSOURCE_DATA to a CONFIG option
The machinery for __ARCH_HAS_CLOCKSOURCE_DATA assumed a file in
asm-generic would be the default for architectures without their own
file in asm/, but that is not how it works.
Replace it with a Kconfig option instead.
Link: http://lkml.kernel.org/r/4E288AA6.7090804@zytor.com
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Cc: Andy Lutomirski <luto@mit.edu>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'arch/x86/Kconfig')
-rw-r--r-- | arch/x86/Kconfig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index da349723d41..c1e41bccdcb 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -93,6 +93,10 @@ config CLOCKSOURCE_WATCHDOG config GENERIC_CLOCKEVENTS def_bool y +config ARCH_CLOCKSOURCE_DATA + def_bool y + depends on X86_64 + config GENERIC_CLOCKEVENTS_BROADCAST def_bool y depends on X86_64 || (X86_32 && X86_LOCAL_APIC) |