diff options
author | Drashna Jaelre <drashna@live.com> | 2018-09-28 13:32:54 -0700 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2018-09-28 17:11:05 -0400 |
commit | e4eeb1eb230a4d92f1c88197b71a07b342966e73 (patch) | |
tree | 2639bf51f3028fbd16c4a71b48660bbe89267cbc | |
parent | cb468e030712731cffb288cb6d8433cf3b953491 (diff) |
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.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common_features.mk b/common_features.mk index 6c835abde6..65ff6b5b38 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) |