summary refs log tree commit diff
path: root/drivers/led/ckled2001-simple.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/led/ckled2001-simple.c')
-rw-r--r--drivers/led/ckled2001-simple.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/led/ckled2001-simple.c b/drivers/led/ckled2001-simple.c
index da4bf20b99..6c4ffd398e 100644
--- a/drivers/led/ckled2001-simple.c
+++ b/drivers/led/ckled2001-simple.c
@@ -148,7 +148,7 @@ void CKLED2001_init(uint8_t addr) {
 
 void CKLED2001_set_value(int index, uint8_t value) {
     ckled2001_led led;
-    if (index >= 0 && index < DRIVER_LED_TOTAL) {
+    if (index >= 0 && index < LED_MATRIX_LED_COUNT) {
         memcpy_P(&led, (&g_ckled2001_leds[index]), sizeof(led));
 
         g_pwm_buffer[led.driver][led.v]          = value;
@@ -157,7 +157,7 @@ void CKLED2001_set_value(int index, uint8_t value) {
 }
 
 void CKLED2001_set_value_all(uint8_t value) {
-    for (int i = 0; i < DRIVER_LED_TOTAL; i++) {
+    for (int i = 0; i < LED_MATRIX_LED_COUNT; i++) {
         CKLED2001_set_value(i, value);
     }
 }