usb_drv: Fix controller initialization on RPI

Execute high priority tasklets immediately, these tasklets need to be processed
before any other work.

Issue #1401
This commit is contained in:
Sebastian Sumpf 2015-02-05 15:15:29 +01:00 committed by Christian Helmuth
parent 5dea0b40aa
commit c2c8483293
1 changed files with 4 additions and 1 deletions

View File

@ -295,5 +295,8 @@ void tasklet_schedule(struct tasklet_struct *tasklet)
void tasklet_hi_schedule(struct tasklet_struct *tasklet)
{
tasklet_schedule(tasklet);
/*
* High priority, execute immediately
*/
tasklet->func(tasklet->data);
}