diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-10-09 00:15:27 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-10-09 00:15:27 +0100 |
commit | b104189c203a47219e51ab179e50fd0c73ccea3b (patch) | |
tree | 37025eb149191f2694cd904264087bf3074772d3 /arch/ppc | |
parent | e24bb60e11e3fe9858b71874a4ac59333adbc4fc (diff) | |
download | kernel_samsung_smdk4412-b104189c203a47219e51ab179e50fd0c73ccea3b.zip kernel_samsung_smdk4412-b104189c203a47219e51ab179e50fd0c73ccea3b.tar.gz kernel_samsung_smdk4412-b104189c203a47219e51ab179e50fd0c73ccea3b.tar.bz2 |
handle_sysrq lost its pt_regs * argument
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/ppc')
-rw-r--r-- | arch/ppc/4xx_io/serial_sicc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/ppc/4xx_io/serial_sicc.c b/arch/ppc/4xx_io/serial_sicc.c index 87fe9a8..080a205 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; } |