Commit d4bcb8ab authored by David Woodhouse's avatar David Woodhouse

Fix handle_sysrq() call in PPC 8260 uart driver

parent dfc2505c
......@@ -475,7 +475,7 @@ static _INLINE_ void receive_chars(ser_info_t *info, struct pt_regs *regs)
if (break_pressed && info->line == sercons.index) {
if (ch != 0 && time_before(jiffies,
break_pressed + HZ*5)) {
handle_sysrq(ch, regs, NULL, NULL);
handle_sysrq(ch, regs, NULL);
break_pressed = 0;
goto ignore_char;
} else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment