mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 10:38:13 +00:00
Kernel: Move all code into the Kernel namespace
This commit is contained in:
parent
d42f0f4661
commit
a356e48150
201 changed files with 907 additions and 111 deletions
|
@ -35,6 +35,8 @@
|
|||
#include <Kernel/VM/Region.h>
|
||||
#include <Kernel/VM/VMObject.h>
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
class PCI::MMIOAccess final : public PCI::Access {
|
||||
public:
|
||||
static void initialize(ACPI_RAW::MCFG&);
|
||||
|
@ -42,6 +44,7 @@ public:
|
|||
|
||||
virtual String get_access_type() override final { return "MMIO-Access"; };
|
||||
virtual u32 get_segments_count();
|
||||
|
||||
protected:
|
||||
explicit MMIOAccess(ACPI_RAW::MCFG&);
|
||||
|
||||
|
@ -75,4 +78,6 @@ private:
|
|||
PhysicalAddress m_base_addr;
|
||||
u8 m_start_bus;
|
||||
u8 m_end_bus;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue