edf: using specific schedule_edf() instead of schedule()

I've changed scheduler invocation in schedule_edf_task_normal()
from generic schedule() to specific schedule_edf() for optimization
(there is no need to use generic functions in specific scheduler
implementation).

Signed-off-by: Bartosz Kokoszko <bartoszx.kokoszko@linux.intel.com>
This commit is contained in:
Bartosz Kokoszko 2019-03-21 13:56:17 +01:00 committed by Marcin Maka
parent 11ccd01588
commit 090208a481
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ static void schedule_edf_task_normal(struct task *task, uint64_t start,
/* need to run scheduler if task not already running */
if (need_sched) {
/* rerun scheduler */
schedule();
schedule_edf();
}
}