mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:27:34 +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
|
@ -29,6 +29,8 @@
|
|||
#include <AK/String.h>
|
||||
#include <Kernel/PCI/Definitions.h>
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
class PCI::Access {
|
||||
public:
|
||||
virtual void enumerate_all(Function<void(Address, ID)>&) = 0;
|
||||
|
@ -86,3 +88,5 @@ protected:
|
|||
virtual void write16_field(Address address, u32 field, u16 value) = 0;
|
||||
virtual void write32_field(Address address, u32 field, u32 value) = 0;
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue