driver/goldfish_pipe:remove pipe interrupt task delay.

Signed-off-by: yangguangcai <yangguangcai@xiaomi.com>
This commit is contained in:
yangguangcai 2023-12-01 14:08:05 +08:00 committed by Xiang Xiao
parent 9642d8dae6
commit 12ecfe365f
1 changed files with 1 additions and 1 deletions

View File

@ -717,7 +717,7 @@ static int goldfish_pipe_interrupt(int irq, void *dev_id, void *arg)
spin_unlock_irqrestore(&dev->lock, flags); spin_unlock_irqrestore(&dev->lock, flags);
work_queue(HPWORK, &dev->work, goldfish_interrupt_task, work_queue(HPWORK, &dev->work, goldfish_interrupt_task,
dev, MSEC2TICK(20)); dev, 0);
return OK; return OK;
} }