Kernel: Standardize the header include style to 'include <Kernel/...>'

This is the overwhelming standard in the project, but there were some
cases in the kernel which were not following it, lets fix those cases!
This commit is contained in:
Brian Gianforcaro 2021-07-11 12:02:15 -07:00 committed by Andreas Kling
parent 6f408e7f0d
commit 425195e93f
Notes: sideshowbarker 2024-07-18 09:16:06 +09:00
11 changed files with 15 additions and 15 deletions

View file

@ -4,8 +4,8 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "FullDevice.h"
#include <AK/Memory.h>
#include <Kernel/Devices/FullDevice.h>
#include <Kernel/Sections.h>
#include <LibC/errno_numbers.h>

View file

@ -6,7 +6,7 @@
#pragma once
#include "CharacterDevice.h"
#include <Kernel/Devices/CharacterDevice.h>
namespace Kernel {

View file

@ -4,10 +4,10 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "MemoryDevice.h"
#include <AK/Memory.h>
#include <AK/StdLibExtras.h>
#include <Kernel/Arch/PC/BIOS.h>
#include <Kernel/Devices/MemoryDevice.h>
#include <Kernel/Sections.h>
#include <Kernel/VM/AnonymousVMObject.h>

View file

@ -6,7 +6,7 @@
#pragma once
#include "CharacterDevice.h"
#include <Kernel/Devices/CharacterDevice.h>
namespace Kernel {

View file

@ -6,7 +6,7 @@
#pragma once
#include "CharacterDevice.h"
#include <Kernel/Devices/CharacterDevice.h>
namespace Kernel {

View file

@ -6,7 +6,7 @@
#pragma once
#include "CharacterDevice.h"
#include <Kernel/Devices/CharacterDevice.h>
namespace Kernel {

View file

@ -4,7 +4,7 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "ProcessGroup.h"
#include <Kernel/ProcessGroup.h>
namespace Kernel {

View file

@ -4,12 +4,12 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "MasterPTY.h"
#include "PTYMultiplexer.h"
#include "SlavePTY.h"
#include <Kernel/Arch/x86/InterruptDisabler.h>
#include <Kernel/Debug.h>
#include <Kernel/Process.h>
#include <Kernel/TTY/MasterPTY.h>
#include <Kernel/TTY/PTYMultiplexer.h>
#include <Kernel/TTY/SlavePTY.h>
#include <LibC/errno_numbers.h>
#include <LibC/signal_numbers.h>
#include <LibC/sys/ioctl_numbers.h>

View file

@ -4,12 +4,12 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "PTYMultiplexer.h"
#include "MasterPTY.h"
#include <AK/Singleton.h>
#include <Kernel/Debug.h>
#include <Kernel/FileSystem/FileDescription.h>
#include <Kernel/Sections.h>
#include <Kernel/TTY/MasterPTY.h>
#include <Kernel/TTY/PTYMultiplexer.h>
#include <LibC/errno_numbers.h>
namespace Kernel {

View file

@ -4,11 +4,11 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "SlavePTY.h"
#include "MasterPTY.h"
#include <Kernel/Debug.h>
#include <Kernel/FileSystem/DevPtsFS.h>
#include <Kernel/Process.h>
#include <Kernel/TTY/MasterPTY.h>
#include <Kernel/TTY/SlavePTY.h>
namespace Kernel {

View file

@ -6,7 +6,6 @@
* SPDX-License-Identifier: BSD-2-Clause
*/
#include "VirtualConsole.h"
#include <AK/StdLibExtras.h>
#include <AK/String.h>
#include <Kernel/Debug.h>
@ -17,6 +16,7 @@
#include <Kernel/Sections.h>
#include <Kernel/StdLib.h>
#include <Kernel/TTY/ConsoleManagement.h>
#include <Kernel/TTY/VirtualConsole.h>
#include <LibVT/Color.h>
namespace Kernel {