summaryrefslogtreecommitdiff
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.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/keyboards/handwired/promethium/promethium.c b/keyboards/handwired/promethium/promethium.c
index e9df7dfe87..63139ac09d 100644
--- a/keyboards/handwired/promethium/promethium.c
+++ b/keyboards/handwired/promethium/promethium.c
@@ -17,7 +17,7 @@ __attribute__ ((weak))
void battery_poll(uint8_t level) {
}
-void matrix_scan_kb(void) {
+void housekeeping_task_kb(void) {
static uint16_t counter = BATTERY_POLL;
counter++;
@@ -25,6 +25,4 @@ void matrix_scan_kb(void) {
counter = 0;
battery_poll(battery_level());
}
-
- matrix_scan_user();
}