diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-03-06 04:42:18 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-03-06 12:30:26 -0500 |
commit | 7c7a89499a1089a36e40de2db54ff82f5988270d (patch) | |
tree | 13016ab665408b0f6133e76d7b365036ebf480ab /arch | |
parent | 3b46e650165f691a30ddede1a79d2df02f3459d7 (diff) |
[PATCH] uml: fix formatting violations in signal delivery code
Fix a few formatting bugs in the signal code.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/um/kernel/signal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/um/kernel/signal.c b/arch/um/kernel/signal.c index 2a32e5e8e9c9..3c798cdde550 100644 --- a/arch/um/kernel/signal.c +++ b/arch/um/kernel/signal.c | |||
@@ -158,12 +158,12 @@ static int kern_do_signal(struct pt_regs *regs) | |||
158 | clear_thread_flag(TIF_RESTORE_SIGMASK); | 158 | clear_thread_flag(TIF_RESTORE_SIGMASK); |
159 | sigprocmask(SIG_SETMASK, ¤t->saved_sigmask, NULL); | 159 | sigprocmask(SIG_SETMASK, ¤t->saved_sigmask, NULL); |
160 | } | 160 | } |
161 | return(handled_sig); | 161 | return handled_sig; |
162 | } | 162 | } |
163 | 163 | ||
164 | int do_signal(void) | 164 | int do_signal(void) |
165 | { | 165 | { |
166 | return(kern_do_signal(¤t->thread.regs)); | 166 | return kern_do_signal(¤t->thread.regs); |
167 | } | 167 | } |
168 | 168 | ||
169 | /* | 169 | /* |
@@ -186,5 +186,5 @@ long sys_sigsuspend(int history0, int history1, old_sigset_t mask) | |||
186 | 186 | ||
187 | long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss) | 187 | long sys_sigaltstack(const stack_t __user *uss, stack_t __user *uoss) |
188 | { | 188 | { |
189 | return(do_sigaltstack(uss, uoss, PT_REGS_SP(¤t->thread.regs))); | 189 | return do_sigaltstack(uss, uoss, PT_REGS_SP(¤t->thread.regs)); |
190 | } | 190 | } |