Kernel/USB: Move UHCI related structures to subdirectory

The number of UHCI related files is starting to expand to the point
where it's best if we move this into their own subdirectory. It'll
also make it easier to manage when we decide to add some more
controller types (whenever that may be)
This commit is contained in:
Jesse Buhagiar 2021-08-13 16:10:43 +10:00 committed by Andreas Kling
commit 4abf399a74
Notes: sideshowbarker 2024-07-18 05:29:20 +09:00
8 changed files with 9 additions and 9 deletions

View file

@ -5,7 +5,7 @@
*/
#include <Kernel/Bus/USB/PacketTypes.h>
#include <Kernel/Bus/USB/UHCIController.h>
#include <Kernel/Bus/USB/UHCI/UHCIController.h>
#include <Kernel/Bus/USB/USBPipe.h>
#include <Kernel/Bus/USB/USBTransfer.h>