summaryrefslogtreecommitdiff
path: root/Kernel
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-04-03 12:07:41 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-04-03 12:07:41 +0200
commit60f236b285dbbec207265cb72d6c491d9aea9751 (patch)
tree35d4ebe8a89e85780dfe3c206892c26712ecbae4 /Kernel
parentd11b5407a39a24cfd2b67ab5bf83a7e672e8ebba (diff)
downloadserenity-60f236b285dbbec207265cb72d6c491d9aea9751.zip
AK: Clean up some of the confusion that is AK/kmalloc.{cpp,h}
Diffstat (limited to 'Kernel')
-rw-r--r--Kernel/Ext2FileSystem.cpp1
-rw-r--r--Kernel/MemoryManager.cpp1
-rw-r--r--Kernel/VirtualFileSystem.cpp1
3 files changed, 0 insertions, 3 deletions
diff --git a/Kernel/Ext2FileSystem.cpp b/Kernel/Ext2FileSystem.cpp
index c1a91da68f..e39d8c52f9 100644
--- a/Kernel/Ext2FileSystem.cpp
+++ b/Kernel/Ext2FileSystem.cpp
@@ -4,7 +4,6 @@
#include "RTC.h"
#include <AK/Bitmap.h>
#include <AK/StdLibExtras.h>
-#include <AK/kmalloc.h>
#include <AK/ktime.h>
#include <AK/kstdio.h>
#include <AK/BufferStream.h>
diff --git a/Kernel/MemoryManager.cpp b/Kernel/MemoryManager.cpp
index e348f5561d..03b95f07c3 100644
--- a/Kernel/MemoryManager.cpp
+++ b/Kernel/MemoryManager.cpp
@@ -1,7 +1,6 @@
#include "MemoryManager.h"
#include <AK/Assertions.h>
#include <AK/kstdio.h>
-#include <AK/kmalloc.h>
#include "i386.h"
#include "StdLib.h"
#include "Process.h"
diff --git a/Kernel/VirtualFileSystem.cpp b/Kernel/VirtualFileSystem.cpp
index fa26e8c1a0..9cbf8be20a 100644
--- a/Kernel/VirtualFileSystem.cpp
+++ b/Kernel/VirtualFileSystem.cpp
@@ -3,7 +3,6 @@
#include "FileSystem.h"
#include <AK/FileSystemPath.h>
#include <AK/StringBuilder.h>
-#include <AK/kmalloc.h>
#include <AK/kstdio.h>
#include <AK/ktime.h>
#include "CharacterDevice.h"