diff options
author | Ingo Molnar <mingo@elte.hu> | 2007-08-09 09:16:48 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2007-08-09 09:16:48 (GMT) |
commit | fb8d47240246e20f864f0724a23a7220cd1c59ac (patch) | |
tree | 0c94ecb977355a2152655738bfcee6072c10f41e /include | |
parent | f02231e51a280f1a0fee4d03ad8f50048e06cced (diff) | |
download | linux-fsl-qoriq-fb8d47240246e20f864f0724a23a7220cd1c59ac.tar.xz |
sched: remove the 'u64 now' parameter from ->pick_next_task()
remove the 'u64 now' parameter from ->pick_next_task().
( identity transformation that causes no change in functionality. )
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/sched.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index c7815a6..c6ad407 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -861,7 +861,7 @@ struct sched_class { void (*check_preempt_curr) (struct rq *rq, struct task_struct *p); - struct task_struct * (*pick_next_task) (struct rq *rq, u64 now); + struct task_struct * (*pick_next_task) (struct rq *rq); void (*put_prev_task) (struct rq *rq, struct task_struct *p, u64 now); unsigned long (*load_balance) (struct rq *this_rq, int this_cpu, |