summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2018-09-28 22:32:54 +0200
committerJack Humbert <jack.humb@gmail.com>2018-09-28 23:11:05 +0200
commite4eeb1eb230a4d92f1c88197b71a07b342966e73 (patch)
tree2639bf51f3028fbd16c4a71b48660bbe89267cbc
parentcb468e030712731cffb288cb6d8433cf3b953491 (diff)
downloadqmk_firmware-e4eeb1eb230a4d92f1c88197b71a07b342966e73.tar.gz
qmk_firmware-e4eeb1eb230a4d92f1c88197b71a07b342966e73.tar.xz
Fix RGB Matrix feature processing in common_features.mk
Specifically, an "L" got appended to the controller names for te "valid types", but did not get appended to the blocks that include the specific drives. So, this breaks anything that isn't "Yes".
-rw-r--r--common_features.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/common_features.mk b/common_features.mk
index 6c835abde..65ff6b5b3 100644
--- a/common_features.mk
+++ b/common_features.mk
@@ -115,7 +115,7 @@ ifeq ($(strip $(RGBLIGHT_ENABLE)), yes)
endif
RGB_MATRIX_ENABLE ?= no
-VALID_MATRIX_TYPES := yes IS31FL3731L IS31FL3733L custom
+VALID_MATRIX_TYPES := yes IS31FL3731 IS31FL3733 custom
ifneq ($(strip $(RGB_MATRIX_ENABLE)), no)
ifeq ($(filter $(RGB_MATRIX_ENABLE),$(VALID_MATRIX_TYPES)),)
$(error RGB_MATRIX_ENABLE="$(RGB_MATRIX_ENABLE)" is not a valid matrix type)