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
commit c65a6b6b22
Notes: sideshowbarker 2024-07-17 11:30:51 +09:00
5 changed files with 5 additions and 16 deletions

View file

@ -14,9 +14,7 @@
#include <Kernel/Debug.h>
#include <Kernel/PhysicalAddress.h>
namespace Kernel {
namespace PCI {
namespace Kernel::PCI {
enum class HeaderType {
Device = 0,
@ -293,7 +291,6 @@ private:
class Domain;
class Device;
}
}