summaryrefslogtreecommitdiff
path: root/keyboards/nullbitsco/nibble/nibble.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/nullbitsco/nibble/nibble.c')
-rw-r--r--keyboards/nullbitsco/nibble/nibble.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/keyboards/nullbitsco/nibble/nibble.c b/keyboards/nullbitsco/nibble/nibble.c
index 43918c13e6..8f462080f0 100644
--- a/keyboards/nullbitsco/nibble/nibble.c
+++ b/keyboards/nullbitsco/nibble/nibble.c
@@ -16,10 +16,6 @@
#include QMK_KEYBOARD_H
// Use Bit-C LED to show CAPS LOCK status
-bool led_update_kb(led_t led_state) {
- bool res = led_update_user(led_state);
- if (res) {
- set_bitc_LED(led_state.caps_lock ? LED_DIM : LED_OFF);
- }
- return res;
+void led_update_ports(led_t led_state) {
+ set_bitc_LED(led_state.caps_lock ? LED_DIM : LED_OFF);
}