aboutsummaryrefslogtreecommitdiff
path: root/devices/pckbd.c
diff options
context:
space:
mode:
authoraqua <aqua@iserlohn-fortress.net>2022-12-10 20:56:57 +0200
committeraqua <aqua@iserlohn-fortress.net>2022-12-11 11:32:51 +0200
commit9b2a78fa52249ab481493550490aa5f37872dcf6 (patch)
tree127031268b9b42b0fbdae3d87684d9c045983677 /devices/pckbd.c
parentRename CCFLAGS to CFLAGS (diff)
downloadkernel-9b2a78fa52249ab481493550490aa5f37872dcf6.tar.xz
Rewrite drivers/uart and drivers/vga in cpp
Diffstat (limited to 'devices/pckbd.c')
-rw-r--r--devices/pckbd.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/devices/pckbd.c b/devices/pckbd.c
index c4fce5b..d550f91 100644
--- a/devices/pckbd.c
+++ b/devices/pckbd.c
@@ -1,6 +1,5 @@
#include "keyboard.h"
#include "ps2_controller.h"
-#include "vga.h"
#include <stdint.h>
#include <stdio.h>
#include <sys/io.h>
@@ -42,7 +41,7 @@ ps2_keyboard_irq_handler()
return;
case 0x58: // F12
- vga_clear(VGA_COLOR_LIGHT_BLUE, VGA_COLOR_LIGHT_GREY);
+ // vga_clear(VGA_COLOR_LIGHT_BLUE, VGA_COLOR_LIGHT_GREY);
return;
}