Kernel/USB: Use "Pipe" instead of "USBPipe" in USBEndpoint

This wasn't caught before because nothing was including this header.
This commit is contained in:
Luke 2021-08-10 02:13:00 +01:00 committed by Andreas Kling
parent 035aef9c09
commit 7dd1786b13
Notes: sideshowbarker 2024-07-18 06:57:04 +09:00

View file

@ -56,7 +56,7 @@ private:
USBEndpoint(/* TODO */);
USBEndpointDescriptor m_descriptor;
USBPipe m_pipe;
Pipe m_pipe;
};
}