Kernel: Reorganize PS/2 files to their own directory

This commit is contained in:
2024-01-04 11:00:10 +02:00
parent c2957d8761
commit d4191c0d94
11 changed files with 26 additions and 24 deletions

View File

@@ -92,4 +92,4 @@ namespace Kernel::Input::PS2
CAPS_LOCK = (1 << 2),
};
}
}

View File

@@ -1,4 +1,6 @@
#include <kernel/Input/PS2Controller.h>
#pragma once
#include <kernel/Input/PS2/Controller.h>
namespace Kernel::Input
{
@@ -40,4 +42,4 @@ namespace Kernel::Input
BAN::CircularQueue<uint8_t, 10> m_command_queue;
};
}
}

View File

@@ -1,8 +1,8 @@
#pragma once
#include <kernel/Input/KeyEvent.h>
#include <kernel/Input/PS2Device.h>
#include <kernel/Input/PS2Keymap.h>
#include <kernel/Input/PS2/Device.h>
#include <kernel/Input/PS2/Keymap.h>
#include <kernel/Semaphore.h>
namespace Kernel::Input
@@ -46,4 +46,4 @@ namespace Kernel::Input
virtual bool has_data_impl() const override;
};
}
}

View File

@@ -20,4 +20,4 @@ namespace Kernel::Input
BAN::Vector<Key> m_extended_keymap;
};
}
}