aboutsummaryrefslogtreecommitdiff
path: root/keyboards/handwired/promethium/promethium.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/promethium/promethium.c')
-rw-r--r--keyboards/handwired/promethium/promethium.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/keyboards/handwired/promethium/promethium.c b/keyboards/handwired/promethium/promethium.c
index 96bcf3ce1..8eb1680d8 100644
--- a/keyboards/handwired/promethium/promethium.c
+++ b/keyboards/handwired/promethium/promethium.c
@@ -22,10 +22,6 @@ __attribute__ ((weak))
22void battery_poll(uint8_t level) { 22void battery_poll(uint8_t level) {
23} 23}
24 24
25void matrix_init_kb(void) {
26 matrix_init_user();
27}
28
29void matrix_scan_kb(void) { 25void matrix_scan_kb(void) {
30 static uint16_t counter = BATTERY_POLL; 26 static uint16_t counter = BATTERY_POLL;
31 counter++; 27 counter++;
@@ -37,12 +33,3 @@ void matrix_scan_kb(void) {
37 33
38 matrix_scan_user(); 34 matrix_scan_user();
39} 35}
40
41void led_set_kb(uint8_t usb_led) {
42 led_set_user(usb_led);
43}
44
45__attribute__ ((weak))
46void led_set_user(uint8_t usb_led) {
47}
48