[IA64] use mprintk instead of printk, in ia64_mca_modify_original_stack

Using printk from MCA/INIT context is unsafe since it can cause deadlock.
The ia64_mca_modify_original_stack is called from both of mca handler and
init handler, so it should use mprintk instead of printk.

Signed-off-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>

authored by Hidetoshi Seto and committed by Tony Luck ef23cdbe b704882e

+1 -1
+1 -1
arch/ia64/kernel/mca.c
··· 1139 1139 return previous_current; 1140 1140 1141 1141 no_mod: 1142 - printk(KERN_INFO "cpu %d, %s %s, original stack not modified\n", 1142 + mprintk(KERN_INFO "cpu %d, %s %s, original stack not modified\n", 1143 1143 smp_processor_id(), type, msg); 1144 1144 return previous_current; 1145 1145 }