Commit 45887e12 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Add missing returns in signal code.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent 1b223c86
......@@ -443,6 +443,8 @@ void do_signal(struct pt_regs *regs)
if (test_thread_flag(TIF_RESTORE_SIGMASK))
clear_thread_flag(TIF_RESTORE_SIGMASK);
}
return;
}
/*
......
......@@ -833,6 +833,8 @@ void do_signal32(struct pt_regs *regs)
if (test_thread_flag(TIF_RESTORE_SIGMASK))
clear_thread_flag(TIF_RESTORE_SIGMASK);
}
return;
}
/*
......
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