mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-03 13:00:29 +00:00
Kernel/USB: Remove unused free
function from QueueHead
This function is no longer required as the freeing is done inside of the controller class through the pool interface.
This commit is contained in:
parent
3f94857e7c
commit
6666230d3e
Notes:
sideshowbarker
2024-07-18 05:29:07 +09:00
Author: https://github.com/Quaker762 Commit: https://github.com/SerenityOS/serenity/commit/6666230d3ec Pull-request: https://github.com/SerenityOS/serenity/pull/9375 Reviewed-by: https://github.com/awesomekling Reviewed-by: https://github.com/bgianfo
1 changed files with 0 additions and 6 deletions
|
@ -296,12 +296,6 @@ struct alignas(16) QueueHead {
|
|||
m_element_link_ptr = m_element_link_ptr | static_cast<u32>(LinkPointerBits::QHSelect);
|
||||
}
|
||||
|
||||
// FIXME: Find out best way to walk queue and free everything
|
||||
void free_transfer_queue([[maybe_unused]] QueueHead* qh)
|
||||
{
|
||||
TODO();
|
||||
}
|
||||
|
||||
void terminate_with_stray_descriptor(TransferDescriptor* td)
|
||||
{
|
||||
m_link_ptr = td->paddr();
|
||||
|
|
Loading…
Reference in a new issue