Skip to content

Commit

Permalink
handle_sysrq lost its pt_regs * argument
Browse files Browse the repository at this point in the history
Signed-off-by: Ralf Baechle <[email protected]>
  • Loading branch information
ralfbaechle committed Oct 8, 2006
1 parent e24bb60 commit b104189
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/ppc/4xx_io/serial_sicc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
2 changes: 1 addition & 1 deletion arch/um/drivers/mconsole_kern.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit b104189

Please sign in to comment.