1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 01:47:34 +00:00

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

View file

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