From: Ralf Baechle Date: Sun, 8 Oct 2006 23:15:27 +0000 (+0100) Subject: handle_sysrq lost its pt_regs * argument X-Git-Tag: v2.6.19-rc2~244^2~9 X-Git-Url: http://git.rot13.org/?a=commitdiff_plain;h=b104189c203a47219e51ab179e50fd0c73ccea3b;p=powerpc.git handle_sysrq lost its pt_regs * argument Signed-off-by: Ralf Baechle --- diff --git a/arch/ppc/4xx_io/serial_sicc.c b/arch/ppc/4xx_io/serial_sicc.c index 87fe9a89db..080a20531f 100644 --- a/arch/ppc/4xx_io/serial_sicc.c +++ b/arch/ppc/4xx_io/serial_sicc.c @@ -441,7 +441,7 @@ siccuart_rx_chars(struct SICC_info *info, struct pt_regs *regs) #ifdef SUPPORT_SYSRQ if (info->sysrq) { if (ch && time_before(jiffies, info->sysrq)) { - handle_sysrq(ch, regs, NULL); + handle_sysrq(ch, NULL); info->sysrq = 0; goto ignore_char; } diff --git a/arch/um/drivers/mconsole_kern.c b/arch/um/drivers/mconsole_kern.c index a67dcbd78d..8568abff66 100644 --- a/arch/um/drivers/mconsole_kern.c +++ b/arch/um/drivers/mconsole_kern.c @@ -675,7 +675,7 @@ static void sysrq_proc(void *arg) { char *op = arg; - handle_sysrq(*op, ¤t->thread.regs, NULL); + handle_sysrq(*op, NULL); } void mconsole_sysrq(struct mc_request *req)