diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2007-02-17 20:03:21 +0100 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-19 14:22:43 -0800 |
commit | 575d5e72aab57beb6d5fa2a7d66be9fc681a5e00 (patch) | |
tree | 647450da1675e695466755fb0d17a8e018c7d6a5 /arch | |
parent | 6168a702ab0be181e5e57a0b2d0e7376f7a47f0b (diff) | |
download | linux-stable-575d5e72aab57beb6d5fa2a7d66be9fc681a5e00.tar.gz linux-stable-575d5e72aab57beb6d5fa2a7d66be9fc681a5e00.tar.bz2 linux-stable-575d5e72aab57beb6d5fa2a7d66be9fc681a5e00.zip |
[PATCH] tick management: make broadcast dependent on local APIC
The broadcast functionality is only necessary when a local APIC is
available. Make the config switch depend on X86_LOCAL_APIC. This
resolves the mach-voyager breakage introduced by the tick managament
code.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/i386/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/i386/Kconfig b/arch/i386/Kconfig index 1df4a1f14289..2f7672545fe9 100644 --- a/arch/i386/Kconfig +++ b/arch/i386/Kconfig @@ -29,6 +29,7 @@ config GENERIC_CLOCKEVENTS config GENERIC_CLOCKEVENTS_BROADCAST bool default y + depends on X86_LOCAL_APIC config LOCKDEP_SUPPORT bool |