diff options
author | Ryan <fauxpark@gmail.com> | 2023-09-21 15:50:01 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-21 15:50:01 +1000 |
commit | f8cea06be3f364e35b5f33c13cf025f010ab158f (patch) | |
tree | 52a0e35ad05c9b100c348713a7a070df6e9acbec /keyboards | |
parent | 3062c98093dd88c4de644d1940b86aa904802616 (diff) |
RGBLight/Backlight: add prefixed driver defines (#22089)
Diffstat (limited to 'keyboards')
-rw-r--r-- | keyboards/mxss/rgblight.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/mxss/rgblight.c b/keyboards/mxss/rgblight.c index 873139b5c6..9809020a81 100644 --- a/keyboards/mxss/rgblight.c +++ b/keyboards/mxss/rgblight.c @@ -739,7 +739,7 @@ void rgblight_unblink_layers(void) { __attribute__((weak)) void rgblight_call_driver(rgb_led_t *start_led, uint8_t num_leds) { ws2812_setleds(start_led, num_leds); } -#ifndef RGBLIGHT_CUSTOM_DRIVER +#ifndef RGBLIGHT_CUSTOM void rgblight_set(void) { rgb_led_t *start_led; uint8_t num_leds = rgblight_ranges.clipping_num_leds; |