MN10300: Fix interrupt mask alteration function call name in gdbstub

Fix the name of interrupt mask alteration function (ie the
local_change_intr_mask_level() fn) called in gdbstub to have an arch_
prefix to match the definition in asm/irqflags.h.

Signed-off-by: David Howells <dhowells@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by David Howells and committed by Linus Torvalds 6142e05f 81e8d216

+6 -3
+2 -1
arch/mn10300/kernel/gdb-io-serial.c
··· 73 73 GDBPORT_SERIAL_IER = UART_IER_RDI | UART_IER_RLSI; 74 74 75 75 /* permit level 0 IRQs to take place */ 76 - local_change_intr_mask_level(NUM2EPSW_IM(CONFIG_GDBSTUB_IRQ_LEVEL + 1)); 76 + arch_local_change_intr_mask_level( 77 + NUM2EPSW_IM(CONFIG_GDBSTUB_IRQ_LEVEL + 1)); 77 78 } 78 79 79 80 /*
+2 -1
arch/mn10300/kernel/gdb-io-ttysm.c
··· 87 87 tmp = *gdbstub_port->_control; 88 88 89 89 /* permit level 0 IRQs only */ 90 - local_change_intr_mask_level(NUM2EPSW_IM(CONFIG_GDBSTUB_IRQ_LEVEL + 1)); 90 + arch_local_change_intr_mask_level( 91 + NUM2EPSW_IM(CONFIG_GDBSTUB_IRQ_LEVEL + 1)); 91 92 } 92 93 93 94 /*
+2 -1
arch/mn10300/kernel/gdb-stub.c
··· 1194 1194 1195 1195 asm volatile("mov mdr,%0" : "=d"(mdr)); 1196 1196 local_save_flags(epsw); 1197 - local_change_intr_mask_level(NUM2EPSW_IM(CONFIG_GDBSTUB_IRQ_LEVEL + 1)); 1197 + arch_local_change_intr_mask_level( 1198 + NUM2EPSW_IM(CONFIG_GDBSTUB_IRQ_LEVEL + 1)); 1198 1199 1199 1200 gdbstub_store_fpu(); 1200 1201