diff options
-rw-r--r-- | arch/ppc/4xx_io/serial_sicc.c | 2 | ||||
-rw-r--r-- | arch/um/drivers/mconsole_kern.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/ppc/4xx_io/serial_sicc.c b/arch/ppc/4xx_io/serial_sicc.c index 87fe9a89dba7..080a20531f8b 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) | |||
441 | #ifdef SUPPORT_SYSRQ | 441 | #ifdef SUPPORT_SYSRQ |
442 | if (info->sysrq) { | 442 | if (info->sysrq) { |
443 | if (ch && time_before(jiffies, info->sysrq)) { | 443 | if (ch && time_before(jiffies, info->sysrq)) { |
444 | handle_sysrq(ch, regs, NULL); | 444 | handle_sysrq(ch, NULL); |
445 | info->sysrq = 0; | 445 | info->sysrq = 0; |
446 | goto ignore_char; | 446 | goto ignore_char; |
447 | } | 447 | } |
diff --git a/arch/um/drivers/mconsole_kern.c b/arch/um/drivers/mconsole_kern.c index a67dcbd78de4..8568abff66b4 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) | |||
675 | { | 675 | { |
676 | char *op = arg; | 676 | char *op = arg; |
677 | 677 | ||
678 | handle_sysrq(*op, ¤t->thread.regs, NULL); | 678 | handle_sysrq(*op, NULL); |
679 | } | 679 | } |
680 | 680 | ||
681 | void mconsole_sysrq(struct mc_request *req) | 681 | void mconsole_sysrq(struct mc_request *req) |