handle_sysrq lost its pt_regs * argument
authorRalf Baechle <ralf@linux-mips.org>
Sun, 8 Oct 2006 23:15:27 +0000 (00:15 +0100)
committerRalf Baechle <ralf@linux-mips.org>
Sun, 8 Oct 2006 23:15:27 +0000 (00:15 +0100)
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
arch/ppc/4xx_io/serial_sicc.c
arch/um/drivers/mconsole_kern.c

index 87fe9a8..080a205 100644 (file)
@@ -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;
             }
index a67dcbd..8568abf 100644 (file)
@@ -675,7 +675,7 @@ static void sysrq_proc(void *arg)
 {
        char *op = arg;
 
-       handle_sysrq(*op, &current->thread.regs, NULL);
+       handle_sysrq(*op, NULL);
 }
 
 void mconsole_sysrq(struct mc_request *req)