1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 11:17:44 +00:00

Kernel: Move a bunch of generic devices code into new subdirectory

This commit is contained in:
Liav A 2023-03-18 13:17:13 +02:00 committed by Jelle Raaijmakers
parent 9eeda5719e
commit 4617c05a08
27 changed files with 34 additions and 34 deletions

View file

@ -7,7 +7,7 @@
#include <Kernel/API/Ioctl.h>
#include <Kernel/Devices/Audio/Management.h>
#include <Kernel/Devices/DeviceManagement.h>
#include <Kernel/Devices/RandomDevice.h>
#include <Kernel/Devices/Generic/RandomDevice.h>
#include <Kernel/Random.h>
#include <Kernel/Sections.h>

View file

@ -14,10 +14,10 @@
#include <Kernel/API/TimePage.h>
#include <Kernel/Arch/RegisterState.h>
#include <Kernel/Devices/CharacterDevice.h>
#include <Kernel/Devices/ConsoleDevice.h>
#include <Kernel/Devices/Device.h>
#include <Kernel/Devices/DeviceControlDevice.h>
#include <Kernel/Devices/NullDevice.h>
#include <Kernel/Devices/Generic/ConsoleDevice.h>
#include <Kernel/Devices/Generic/DeviceControlDevice.h>
#include <Kernel/Devices/Generic/NullDevice.h>
#include <Kernel/Library/LockRefPtr.h>
#include <Kernel/UnixTypes.h>

View file

@ -8,8 +8,8 @@
#if ARCH(X86_64)
# include <Kernel/Arch/x86_64/BochsDebugOutput.h>
#endif
#include <Kernel/Devices/ConsoleDevice.h>
#include <Kernel/Devices/DeviceManagement.h>
#include <Kernel/Devices/Generic/ConsoleDevice.h>
#include <Kernel/Locking/Spinlock.h>
#include <Kernel/Sections.h>
#include <Kernel/kstdio.h>

View file

@ -4,8 +4,8 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <Kernel/Devices/DeviceControlDevice.h>
#include <Kernel/Devices/DeviceManagement.h>
#include <Kernel/Devices/Generic/DeviceControlDevice.h>
namespace Kernel {

View file

@ -6,7 +6,7 @@
#include <Kernel/API/POSIX/errno.h>
#include <Kernel/Devices/DeviceManagement.h>
#include <Kernel/Devices/FullDevice.h>
#include <Kernel/Devices/Generic/FullDevice.h>
#include <Kernel/Sections.h>
namespace Kernel {

View file

@ -5,7 +5,7 @@
*/
#include <Kernel/Devices/DeviceManagement.h>
#include <Kernel/Devices/MemoryDevice.h>
#include <Kernel/Devices/Generic/MemoryDevice.h>
#include <Kernel/Memory/AnonymousVMObject.h>
#include <Kernel/Memory/TypedMapping.h>
#include <Kernel/Sections.h>

View file

@ -6,7 +6,7 @@
#include <AK/Singleton.h>
#include <Kernel/Devices/DeviceManagement.h>
#include <Kernel/Devices/NullDevice.h>
#include <Kernel/Devices/Generic/NullDevice.h>
#include <Kernel/Sections.h>
namespace Kernel {

View file

@ -5,7 +5,7 @@
*/
#include <Kernel/Devices/DeviceManagement.h>
#include <Kernel/Devices/RandomDevice.h>
#include <Kernel/Devices/Generic/RandomDevice.h>
#include <Kernel/Random.h>
#include <Kernel/Sections.h>

View file

@ -5,7 +5,7 @@
*/
#include <Kernel/Devices/DeviceManagement.h>
#include <Kernel/Devices/SelfTTYDevice.h>
#include <Kernel/Devices/Generic/SelfTTYDevice.h>
#include <Kernel/Sections.h>
#include <Kernel/TTY/TTY.h>

View file

@ -5,7 +5,7 @@
*/
#include <Kernel/Devices/DeviceManagement.h>
#include <Kernel/Devices/ZeroDevice.h>
#include <Kernel/Devices/Generic/ZeroDevice.h>
#include <Kernel/Sections.h>
namespace Kernel {