diff options
| author | Ryan | 2022-09-23 14:46:23 +0200 |
|---|---|---|
| committer | GitHub | 2022-09-23 14:46:23 +0200 |
| commit | 36c410592dbd35da33ccc5fd6d2a5cbf4b25a708 (patch) | |
| tree | 4e75c5fc5cd31d9fdc904876906c0b409ee45d90 /quantum/led_matrix/led_matrix_drivers.c | |
| parent | d967de0df749f3be63403e07feda416ea09351d0 (diff) | |
Change `DRIVER_LED_COUNT` to `{LED,RGB}_MATRIX_LED_COUNT` (#18399)
Diffstat (limited to 'quantum/led_matrix/led_matrix_drivers.c')
| -rw-r--r-- | quantum/led_matrix/led_matrix_drivers.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/led_matrix/led_matrix_drivers.c b/quantum/led_matrix/led_matrix_drivers.c index f01b395c15..2c09ba82b1 100644 --- a/quantum/led_matrix/led_matrix_drivers.c +++ b/quantum/led_matrix/led_matrix_drivers.c @@ -96,7 +96,7 @@ static void init(void) { # endif # endif - for (int index = 0; index < DRIVER_LED_TOTAL; index++) { + for (int index = 0; index < LED_MATRIX_LED_COUNT; index++) { # if defined(IS31FL3731) IS31FL3731_set_led_control_register(index, true); # elif defined(IS31FL3733) |