1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 21:48:11 +00:00

Kernel: Use C++17 namespace style for nested PCI namespace

Adjust the nested namespace formatting in PCI files to use the nicer
and more consistent C++17 style.
This commit is contained in:
b14ckcat 2022-04-25 10:32:09 -04:00 committed by Linus Groh
parent d8d7b5d82c
commit c65a6b6b22
5 changed files with 5 additions and 16 deletions

View file

@ -14,8 +14,7 @@
#include <Kernel/Panic.h>
#include <Kernel/Sections.h>
namespace Kernel {
namespace PCI {
namespace Kernel::PCI {
READONLY_AFTER_INIT bool g_pci_access_io_probe_failed;
READONLY_AFTER_INIT bool g_pci_access_is_disabled_from_commandline;
@ -83,4 +82,3 @@ UNMAP_AFTER_INIT bool test_pci_io()
}
}
}