diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2006-10-08 19:15:27 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2006-10-08 19:15:27 -0400 |
commit | b104189c203a47219e51ab179e50fd0c73ccea3b (patch) | |
tree | 37025eb149191f2694cd904264087bf3074772d3 /arch/um | |
parent | e24bb60e11e3fe9858b71874a4ac59333adbc4fc (diff) |
handle_sysrq lost its pt_regs * argument
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/drivers/mconsole_kern.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |