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
commit 3fb7e98e42
Notes: sideshowbarker 2024-07-19 00:00:43 +09:00
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;