diff options
author | Marvin Borner | 2020-04-28 18:32:36 +0200 |
---|---|---|
committer | Marvin Borner | 2020-04-28 18:32:36 +0200 |
commit | 4b8518b4e791c68154ec52badcc921b62afafb49 (patch) | |
tree | 9c855266cf7451f503bf3cb849e63ac72ae48e74 /src/kernel/input | |
parent | 46007d2598b7aef13895b21669cfb6f24272e5fe (diff) |
Maaaany fixes...
Sorry for the increasingly worse-getting commit messages :D
Diffstat (limited to 'src/kernel/input')
-rw-r--r-- | src/kernel/input/ps2/keyboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/input/ps2/keyboard.c b/src/kernel/input/ps2/keyboard.c index b23d1bc..4dc5119 100644 --- a/src/kernel/input/ps2/keyboard.c +++ b/src/kernel/input/ps2/keyboard.c @@ -130,7 +130,7 @@ void keyboard_rate() void keyboard_clear_buffer() { - kfree(keyboard_buffer); + // kfree(keyboard_buffer); keyboard_buffer = (char *)kmalloc(4096); // 4KiB } |