mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 00:27:45 +00:00
Kernel: Get rid of Kernel/types.h, separate LinearAddress/PhysicalAddress.
This commit is contained in:
parent
6306cf5c27
commit
a58d7fd8bb
27 changed files with 119 additions and 121 deletions
|
@ -3,7 +3,7 @@
|
|||
#include <AK/Types.h>
|
||||
#include <AK/AKString.h>
|
||||
#include <SharedGraphics/Size.h>
|
||||
#include <Kernel/types.h>
|
||||
#include <Kernel/PhysicalAddress.h>
|
||||
#include <Kernel/Devices/BlockDevice.h>
|
||||
|
||||
class BXVGADevice final : public BlockDevice {
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
#include <Kernel/Devices/Device.h>
|
||||
#include <Kernel/LinearAddress.h>
|
||||
|
||||
class BlockDevice : public Device {
|
||||
public:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#include "IDEDiskDevice.h"
|
||||
#include "types.h"
|
||||
#include <AK/Types.h>
|
||||
#include "Process.h"
|
||||
#include "StdLib.h"
|
||||
#include "IO.h"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#include "types.h"
|
||||
#include <AK/Types.h>
|
||||
#include "i386.h"
|
||||
#include "IO.h"
|
||||
#include "PIC.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue