Kernel: Clean up PCI::Device namespace formatting

This commit is contained in:
Ben Wiederhake 2021-09-11 15:39:11 +02:00 committed by Idan Horowitz
parent f9e0815c3b
commit de15a6a657

View file

@ -10,7 +10,9 @@
#include <Kernel/Bus/PCI/Definitions.h>
namespace Kernel {
class PCI::Device {
namespace PCI {
class Device {
public:
Address pci_address() const { return m_pci_address; };
@ -33,4 +35,6 @@ protected:
private:
Address m_pci_address;
};
}
}