1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 05:17:35 +00:00

Kernel/USB: Simplify schedule

It seems like Haiku and Grub do this, so let's not bother
with any fancy timing stuff for now (to at least get
_something_ working...)
This commit is contained in:
Jesse Buhagiar 2021-01-03 16:44:48 +11:00 committed by Andreas Kling
parent ff4afe17be
commit 3fb7e98e42
2 changed files with 3 additions and 22 deletions

View file

@ -84,7 +84,6 @@ private:
Vector<QueueHead*> m_free_qh_pool;
Vector<TransferDescriptor*> m_free_td_pool;
Vector<TransferDescriptor*> m_iso_td_list;
Vector<QueueHead*> m_interrupt_qh_list;
QueueHead* m_interrupt_transfer_queue;
QueueHead* m_lowspeed_control_qh;