diff options
author | Daniel Walker <dwalker@mvista.com> | 2007-10-18 06:06:11 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-18 17:37:26 -0400 |
commit | 0719e3702e3ad81c51aec993a641a7d84d3ac618 (patch) | |
tree | 47ca974da726e560f9b47833ef95b0d87e98fc53 /kernel/itimer.c | |
parent | 62769dce8616f4066a1349f798bdd4ef5dd8feca (diff) |
whitespace fixes: interval timers
Signed-off-by: Daniel Walker <dwalker@mvista.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/itimer.c')
-rw-r--r-- | kernel/itimer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/itimer.c b/kernel/itimer.c index 3205e8e114fa..2fab344dbf56 100644 --- a/kernel/itimer.c +++ b/kernel/itimer.c | |||
@@ -130,7 +130,7 @@ asmlinkage long sys_getitimer(int which, struct itimerval __user *value) | |||
130 | enum hrtimer_restart it_real_fn(struct hrtimer *timer) | 130 | enum hrtimer_restart it_real_fn(struct hrtimer *timer) |
131 | { | 131 | { |
132 | struct signal_struct *sig = | 132 | struct signal_struct *sig = |
133 | container_of(timer, struct signal_struct, real_timer); | 133 | container_of(timer, struct signal_struct, real_timer); |
134 | 134 | ||
135 | send_group_sig_info(SIGALRM, SEND_SIG_PRIV, sig->tsk); | 135 | send_group_sig_info(SIGALRM, SEND_SIG_PRIV, sig->tsk); |
136 | 136 | ||
@@ -291,6 +291,6 @@ asmlinkage long sys_setitimer(int which, | |||
291 | return error; | 291 | return error; |
292 | 292 | ||
293 | if (copy_to_user(ovalue, &get_buffer, sizeof(get_buffer))) | 293 | if (copy_to_user(ovalue, &get_buffer, sizeof(get_buffer))) |
294 | return -EFAULT; | 294 | return -EFAULT; |
295 | return 0; | 295 | return 0; |
296 | } | 296 | } |