mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
Kernel/USB: Move USB related files to into specific directory
As the USB/UHCI driver grows in size, it'll be much cleaner to have all of the USB related files in one folder where they can be easily accessed :^)
This commit is contained in:
parent
8b6db78aa7
commit
0dbb9361b8
Notes:
sideshowbarker
2024-07-19 00:01:07 +09:00
Author: https://github.com/Quaker762 Commit: https://github.com/SerenityOS/serenity/commit/0dbb9361b89 Pull-request: https://github.com/SerenityOS/serenity/pull/4019 Reviewed-by: https://github.com/Lubrsi Reviewed-by: https://github.com/awesomekling
4 changed files with 3 additions and 3 deletions
|
@ -32,7 +32,7 @@ set(KERNEL_SOURCES
|
|||
Devices/RandomDevice.cpp
|
||||
Devices/SB16.cpp
|
||||
Devices/SerialDevice.cpp
|
||||
Devices/UHCIController.cpp
|
||||
Devices/USB/UHCIController.cpp
|
||||
Devices/VMWareBackdoor.cpp
|
||||
Devices/ZeroDevice.cpp
|
||||
Storage/Partition/DiskPartition.cpp
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#include <Kernel/Devices/UHCIController.h>
|
||||
#include <Kernel/Devices/USB/UHCIController.h>
|
||||
|
||||
#define UHCI_ENABLED 0
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
#include <Kernel/Devices/RandomDevice.h>
|
||||
#include <Kernel/Devices/SB16.h>
|
||||
#include <Kernel/Devices/SerialDevice.h>
|
||||
#include <Kernel/Devices/UHCIController.h>
|
||||
#include <Kernel/Devices/USB/UHCIController.h>
|
||||
#include <Kernel/Devices/VMWareBackdoor.h>
|
||||
#include <Kernel/Devices/ZeroDevice.h>
|
||||
#include <Kernel/FileSystem/Ext2FileSystem.h>
|
||||
|
|
Loading…
Reference in a new issue