From: Drashna Jaelre <drashna@live.com>
Date: Fri, 28 Sep 2018 20:32:54 +0000 (-0700)
Subject: Fix RGB Matrix feature processing in common_features.mk
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e4eeb1eb230a4d92f1c88197b71a07b342966e73;p=qmk_firmware.git

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".
---

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)