summaryrefslogtreecommitdiff
path: root/driver/keyboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'driver/keyboard.c')
-rw-r--r--driver/keyboard.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/driver/keyboard.c b/driver/keyboard.c
index 8d7c8aa..55e3c41 100644
--- a/driver/keyboard.c
+++ b/driver/keyboard.c
@@ -4,6 +4,7 @@
#define FOOLOS_MODULE_NAME "keyboard"
#include <stdbool.h>
#include "kernel/x86.h"
+#include "lib/logger/log.h"
static bool ctrl_l=false;
static bool shift_l=false;
@@ -20,6 +21,7 @@ static void put(uint8_t c)
void keyboard_init(uint32_t s)
{
kb_stream=s;
+ log(FOOLOS_MODULE_NAME,FOOLOS_LOG_INFO,"Keyboard Initialized");
}
void keyboard_handle(uint8_t in)