* a second caller finds the task already running
  * but looks just after the last call to func
  */
-void rxe_do_task(struct tasklet_struct *t)
+static void do_task(struct tasklet_struct *t)
 {
        int cont;
        int ret;
        task->func      = func;
        task->destroyed = false;
 
-       tasklet_setup(&task->tasklet, rxe_do_task);
+       tasklet_setup(&task->tasklet, do_task);
 
        task->state = TASK_STATE_START;
        spin_lock_init(&task->state_lock);
        if (task->destroyed)
                return;
 
-       rxe_do_task(&task->tasklet);
+       do_task(&task->tasklet);
 }
 
 void rxe_sched_task(struct rxe_task *task)
 
  */
 int __rxe_do_task(struct rxe_task *task);
 
-/*
- * common function called by any of the main tasklets
- * If there is any chance that there is additional
- * work to do someone must reschedule the task before
- * leaving
- */
-void rxe_do_task(struct tasklet_struct *t);
-
 void rxe_run_task(struct rxe_task *task);
 
 void rxe_sched_task(struct rxe_task *task);