[IA64] kexec: declare ia64_mca_pal_base in mca.h rather than kexec.h

* Kexec adds some code to arch/ia64/kernel/smp.c which needs ia64_mca_pal_base,
so the kexec patch (actually the kdump patch) declares this
per-cpu variable in include/asm-ia64/kexec.h.

* ia64_mca_pal_base is defined in arch/ia64/kernel/mca.c, so it
seems to me that it would make a lot more sense to declare it in
include/asm-ia64/mca.h.

Signed-off-by: Simon Horman <horms@verge.net.au>
Signed-off-by: Tony Luck <tony.luck@intel.com>

authored by Simon Horman and committed by Tony Luck 29763254 8621235b

+2 -1
-1
include/asm-ia64/kexec.h
··· 22 22 } while(0) 23 23 24 24 extern struct kimage *ia64_kimage; 25 - DECLARE_PER_CPU(u64, ia64_mca_pal_base); 26 25 extern const unsigned int relocate_new_kernel_size; 27 26 extern void relocate_new_kernel(unsigned long, unsigned long, 28 27 struct ia64_boot_param *, unsigned long);
+2
include/asm-ia64/mca.h
··· 156 156 int *monarch_cpu; 157 157 }; 158 158 159 + DECLARE_PER_CPU(u64, ia64_mca_pal_base); 160 + 159 161 #else /* __ASSEMBLY__ */ 160 162 161 163 #define IA64_MCA_CORRECTED 0x0 /* Error has been corrected by OS_MCA */