aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndres Salomon <dilinger@debian.org>2008-02-09 17:24:08 -0500
committerThomas Gleixner <tglx@linutronix.de>2008-02-09 17:24:08 -0500
commitb0e6bf2571e9385335e6337bdedb85cb629ab3fb (patch)
tree52999d609c04fe64db926829f1d305e95c6a0341
parent9501b2efd70ad3957a70d44de54dab7c52f9b882 (diff)
x86: GEODE: MFGPT: make mfgpt_timer_setup available outside of mfgpt_32.c
We need to be called from elsewhere, and this gets some #ifdefs out of the .c file. Signed-off-by: Andres Salomon <dilinger@debian.org> Signed-off-by: Jordan Crouse <jordan.crouse@amd.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--arch/x86/kernel/mfgpt_32.c8
-rw-r--r--include/asm-x86/geode.h6
2 files changed, 7 insertions, 7 deletions
diff --git a/arch/x86/kernel/mfgpt_32.c b/arch/x86/kernel/mfgpt_32.c
index 6f79061cf119..5cf3a839530c 100644
--- a/arch/x86/kernel/mfgpt_32.c
+++ b/arch/x86/kernel/mfgpt_32.c
@@ -43,12 +43,6 @@ static struct mfgpt_timer_t {
43#define MFGPT_HZ (32768 / MFGPT_DIVISOR) 43#define MFGPT_HZ (32768 / MFGPT_DIVISOR)
44#define MFGPT_PERIODIC (MFGPT_HZ / HZ) 44#define MFGPT_PERIODIC (MFGPT_HZ / HZ)
45 45
46#ifdef CONFIG_GEODE_MFGPT_TIMER
47static int __init mfgpt_timer_setup(void);
48#else
49#define mfgpt_timer_setup() (0)
50#endif
51
52/* Allow for disabling of MFGPTs */ 46/* Allow for disabling of MFGPTs */
53static int disable; 47static int disable;
54static int __init mfgpt_disable(char *s) 48static int __init mfgpt_disable(char *s)
@@ -314,7 +308,7 @@ static struct irqaction mfgptirq = {
314 .name = "mfgpt-timer" 308 .name = "mfgpt-timer"
315}; 309};
316 310
317static int __init mfgpt_timer_setup(void) 311int __init mfgpt_timer_setup(void)
318{ 312{
319 int timer, ret; 313 int timer, ret;
320 u16 val; 314 u16 val;
diff --git a/include/asm-x86/geode.h b/include/asm-x86/geode.h
index c4482753a358..c13630655d62 100644
--- a/include/asm-x86/geode.h
+++ b/include/asm-x86/geode.h
@@ -214,4 +214,10 @@ extern int geode_mfgpt_alloc_timer(int timer, int domain);
214#define geode_mfgpt_setup_irq(t, c, i) geode_mfgpt_set_irq((t), (c), (i), 1) 214#define geode_mfgpt_setup_irq(t, c, i) geode_mfgpt_set_irq((t), (c), (i), 1)
215#define geode_mfgpt_release_irq(t, c, i) geode_mfgpt_set_irq((t), (c), (i), 0) 215#define geode_mfgpt_release_irq(t, c, i) geode_mfgpt_set_irq((t), (c), (i), 0)
216 216
217#ifdef CONFIG_GEODE_MFGPT_TIMER
218extern int __init mfgpt_timer_setup(void);
219#else
220static inline int mfgpt_timer_setup(void) { return 0; }
221#endif
222
217#endif 223#endif