summaryrefslogtreecommitdiff
path: root/common_features.mk
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2021-07-11 14:31:35 -0700
committerGitHub <noreply@github.com>2021-07-11 14:31:35 -0700
commitccc0b23a75f30f0ee9e1c6440dd3d56c99d38ea2 (patch)
tree26143876908e9c0b1b279a7da61be0f90cd00de4 /common_features.mk
parent0b06452d00dcd967bfcaffe89e88a4758c878e74 (diff)
Unify matrix for split common and regular matrix (#13330)
Diffstat (limited to 'common_features.mk')
-rw-r--r--common_features.mk6
1 files changed, 1 insertions, 5 deletions
diff --git a/common_features.mk b/common_features.mk
index f7bdedf2ff..8080113efd 100644
--- a/common_features.mk
+++ b/common_features.mk
@@ -511,11 +511,7 @@ ifneq ($(strip $(CUSTOM_MATRIX)), yes)
# if 'lite' then skip the actual matrix implementation
ifneq ($(strip $(CUSTOM_MATRIX)), lite)
# Include the standard or split matrix code if needed
- ifeq ($(strip $(SPLIT_KEYBOARD)), yes)
- QUANTUM_SRC += $(QUANTUM_DIR)/split_common/matrix.c
- else
- QUANTUM_SRC += $(QUANTUM_DIR)/matrix.c
- endif
+ QUANTUM_SRC += $(QUANTUM_DIR)/matrix.c
endif
endif