diff options
author | Yi Wang <[email protected]> | 2018-07-16 14:08:57 +0800 |
---|---|---|
committer | Thomas Gleixner <[email protected]> | 2018-07-19 16:52:40 +0200 |
commit | 30587589251a00974115e0815ac316980f48dbb5 (patch) | |
tree | ac7c78bdf103dee20a0b1d1bdfa3cae12210505f | |
parent | c6bb11147eb09bd39f316c6062455b88c905ab6e (diff) |
timer: Fix coding style
The call to wake_up_nohz_cpu() is incorrectly indented. Remove the surplus TAB.
Signed-off-by: Yi Wang <[email protected]>
Signed-off-by: Thomas Gleixner <[email protected]>
Reviewed-by: Jiang Biao <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
CC: Anna-Maria Gleixner <[email protected]>
Link: https://lkml.kernel.org/r/[email protected]
-rw-r--r-- | kernel/time/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/time/timer.c b/kernel/time/timer.c index cc2d23e6ff61..baa528a24a73 100644 --- a/kernel/time/timer.c +++ b/kernel/time/timer.c @@ -581,7 +581,7 @@ trigger_dyntick_cpu(struct timer_base *base, struct timer_list *timer) * wheel: */ base->next_expiry = timer->expires; - wake_up_nohz_cpu(base->cpu); + wake_up_nohz_cpu(base->cpu); } static void |