summaryrefslogtreecommitdiff
path: root/keyboards/phantom/phantom.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/phantom/phantom.c')
-rw-r--r--keyboards/phantom/phantom.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/keyboards/phantom/phantom.c b/keyboards/phantom/phantom.c
index 1017de0093..5c478f82aa 100644
--- a/keyboards/phantom/phantom.c
+++ b/keyboards/phantom/phantom.c
@@ -15,23 +15,3 @@
*/
#include "phantom.h"
-
-void keyboard_pre_init_kb(void) {
- led_init_ports();
-
- keyboard_pre_init_user();
-}
-
-void led_init_ports(void) {
- setPinOutput(B6);
- setPinOutput(B7);
-}
-
-bool led_update_kb(led_t led_state) {
- if (led_update_user(led_state)) {
- writePin(B6, led_state.caps_lock);
- writePin(B7, led_state.scroll_lock);
- }
-
- return true;
-}