Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Merge tag 'please-pull-misc-4.2' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux

Pull ia64 updates from Tony Luck:
"Pair of ia64 cleanups"

* tag 'please-pull-misc-4.2' of git://git.kernel.org/pub/scm/linux/kernel/git/aegl/linux:
ia64: Use setup_timer
ia64: export flush_icache_range for module use

+5 -4
+3
arch/ia64/kernel/ia64_ksyms.c
··· 96 96 /* mcount is defined in assembly */ 97 97 EXPORT_SYMBOL(_mcount); 98 98 #endif 99 + 100 + #include <asm/cacheflush.h> 101 + EXPORT_SYMBOL_GPL(flush_icache_range);
+2 -4
arch/ia64/kernel/mca.c
··· 2117 2117 register_hotcpu_notifier(&mca_cpu_notifier); 2118 2118 2119 2119 /* Setup the CMCI/P vector and handler */ 2120 - init_timer(&cmc_poll_timer); 2121 - cmc_poll_timer.function = ia64_mca_cmc_poll; 2120 + setup_timer(&cmc_poll_timer, ia64_mca_cmc_poll, 0UL); 2122 2121 2123 2122 /* Unmask/enable the vector */ 2124 2123 cmc_polling_enabled = 0; ··· 2128 2129 #ifdef CONFIG_ACPI 2129 2130 /* Setup the CPEI/P vector and handler */ 2130 2131 cpe_vector = acpi_request_vector(ACPI_INTERRUPT_CPEI); 2131 - init_timer(&cpe_poll_timer); 2132 - cpe_poll_timer.function = ia64_mca_cpe_poll; 2132 + setup_timer(&cpe_poll_timer, ia64_mca_cpe_poll, 0UL); 2133 2133 2134 2134 { 2135 2135 unsigned int irq;