remove the 'u64 now' parameter from dec_nr_running().
( identity transformation that causes no change in functionality. )
Signed-off-by: Ingo Molnar <mingo@elte.hu>
        inc_load(rq, p);
 }
 
-static void dec_nr_running(struct task_struct *p, struct rq *rq, u64 now)
+static void dec_nr_running(struct task_struct *p, struct rq *rq)
 {
        rq->nr_running--;
        dec_load(rq, p);
                rq->nr_uninterruptible++;
 
        dequeue_task(rq, p, sleep, now);
-       dec_nr_running(p, rq, now);
+       dec_nr_running(p, rq);
 }
 
 /**