aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--arch/ia64/kernel/ia64_ksyms.c3
-rw-r--r--arch/ia64/kernel/mca.c6
2 files changed, 5 insertions, 4 deletions
diff --git a/arch/ia64/kernel/ia64_ksyms.c b/arch/ia64/kernel/ia64_ksyms.c
index 5b7791dd3965..096731049538 100644
--- a/arch/ia64/kernel/ia64_ksyms.c
+++ b/arch/ia64/kernel/ia64_ksyms.c
@@ -96,3 +96,6 @@ EXPORT_SYMBOL(ia64_ivt);
96/* mcount is defined in assembly */ 96/* mcount is defined in assembly */
97EXPORT_SYMBOL(_mcount); 97EXPORT_SYMBOL(_mcount);
98#endif 98#endif
99
100#include <asm/cacheflush.h>
101EXPORT_SYMBOL_GPL(flush_icache_range);
diff --git a/arch/ia64/kernel/mca.c b/arch/ia64/kernel/mca.c
index dd5801eb4c69..2889412e03eb 100644
--- a/arch/ia64/kernel/mca.c
+++ b/arch/ia64/kernel/mca.c
@@ -2117,8 +2117,7 @@ ia64_mca_late_init(void)
2117 register_hotcpu_notifier(&mca_cpu_notifier); 2117 register_hotcpu_notifier(&mca_cpu_notifier);
2118 2118
2119 /* Setup the CMCI/P vector and handler */ 2119 /* Setup the CMCI/P vector and handler */
2120 init_timer(&cmc_poll_timer); 2120 setup_timer(&cmc_poll_timer, ia64_mca_cmc_poll, 0UL);
2121 cmc_poll_timer.function = ia64_mca_cmc_poll;
2122 2121
2123 /* Unmask/enable the vector */ 2122 /* Unmask/enable the vector */
2124 cmc_polling_enabled = 0; 2123 cmc_polling_enabled = 0;
@@ -2129,8 +2128,7 @@ ia64_mca_late_init(void)
2129#ifdef CONFIG_ACPI 2128#ifdef CONFIG_ACPI
2130 /* Setup the CPEI/P vector and handler */ 2129 /* Setup the CPEI/P vector and handler */
2131 cpe_vector = acpi_request_vector(ACPI_INTERRUPT_CPEI); 2130 cpe_vector = acpi_request_vector(ACPI_INTERRUPT_CPEI);
2132 init_timer(&cpe_poll_timer); 2131 setup_timer(&cpe_poll_timer, ia64_mca_cpe_poll, 0UL);
2133 cpe_poll_timer.function = ia64_mca_cpe_poll;
2134 2132
2135 { 2133 {
2136 unsigned int irq; 2134 unsigned int irq;