]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
Fix RGB Matrix feature processing in common_features.mk
authorDrashna Jaelre <drashna@live.com>
Fri, 28 Sep 2018 20:32:54 +0000 (13:32 -0700)
committerJack Humbert <jack.humb@gmail.com>
Fri, 28 Sep 2018 21:11:05 +0000 (17:11 -0400)
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".

common_features.mk

index 6c835abde6728f8fd901d8136c6007ad5f02617b..65ff6b5b38440fb66d76a54d984dc5b4d6a74f1a 100644 (file)
@@ -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)