Kernel: Slap UNMAP_AFTER_INIT on a bunch more functions

We're now able to unmap 100 KiB of kernel text after init. :^)
This commit is contained in:
Andreas Kling 2021-02-19 21:29:46 +01:00
commit 2b2828ae52
Notes: sideshowbarker 2024-07-18 22:08:44 +09:00
36 changed files with 105 additions and 105 deletions

View file

@ -33,12 +33,12 @@
namespace Kernel {
MemoryDevice::MemoryDevice()
UNMAP_AFTER_INIT MemoryDevice::MemoryDevice()
: CharacterDevice(1, 1)
{
}
MemoryDevice::~MemoryDevice()
UNMAP_AFTER_INIT MemoryDevice::~MemoryDevice()
{
}