aboutsummaryrefslogtreecommitdiff
path: root/drivers/include/ps2.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/include/ps2.h')
-rw-r--r--drivers/include/ps2.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/drivers/include/ps2.h b/drivers/include/ps2.h
deleted file mode 100644
index 6f2c572..0000000
--- a/drivers/include/ps2.h
+++ /dev/null
@@ -1,11 +0,0 @@
-/* this is both a PS/2 keyboard AND a PS/2 MOUSE driver */
-
-#include <stdint.h>
-
-#define PS2_SCROLL_LOCK (1 << 0)
-#define PS2_NUM_LOCK (1 << 1)
-#define PS2_CAPS_LOCK (1 << 2)
-
-void ps2_set_leds(uint8_t status);
-
-void ps2_init(void);