diff options
author | Joel Challis <git@zvecr.com> | 2020-01-19 00:59:09 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-19 00:59:09 +0000 |
commit | ba628a28bcf09421739922d8eeef05e6ca9e9b6b (patch) | |
tree | 75ef0b111a6f7f33026cab285a318dca56c0c992 /quantum/quantum.c | |
parent | a1452db98abc2a95bac30a5f36d514748cc9851d (diff) | |
download | firmware-ba628a28bcf09421739922d8eeef05e6ca9e9b6b.tar.gz firmware-ba628a28bcf09421739922d8eeef05e6ca9e9b6b.tar.bz2 firmware-ba628a28bcf09421739922d8eeef05e6ca9e9b6b.zip |
Move rgblight and backlight task to common location (#7733)
Diffstat (limited to 'quantum/quantum.c')
-rw-r--r-- | quantum/quantum.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index bf159644a..9cd50b11d 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c @@ -634,12 +634,8 @@ void matrix_scan_quantum() { matrix_scan_combo(); #endif -#if defined(BACKLIGHT_ENABLE) -# if defined(LED_MATRIX_ENABLE) +#ifdef LED_MATRIX_ENABLE led_matrix_task(); -# elif defined(BACKLIGHT_PIN) || defined(BACKLIGHT_PINS) - backlight_task(); -# endif #endif #ifdef RGB_MATRIX_ENABLE |