diff options
author | Joel Challis <git@zvecr.com> | 2022-01-23 02:41:57 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-23 02:41:57 +0000 |
commit | a8700404f7a73ba3a5da4670a04cf5f999578abd (patch) | |
tree | 99935e316ee2ec38765de1426f6eefa387c96ebf /quantum/matrix_common.c | |
parent | 8101a836a410c54f14c4f61738bfedf5912e903e (diff) |
Relocate matrix_init_quantum content (#15953)
* Relocate matrix_init_quantum content
* Update include order
* Fix cherry pick from 15722
Diffstat (limited to 'quantum/matrix_common.c')
-rw-r--r-- | quantum/matrix_common.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/quantum/matrix_common.c b/quantum/matrix_common.c index 98b83ddcf6..d67aaf508c 100644 --- a/quantum/matrix_common.c +++ b/quantum/matrix_common.c @@ -139,8 +139,6 @@ __attribute__((weak)) void matrix_slave_scan_user(void) {} __attribute__((weak)) void matrix_init(void) { #ifdef SPLIT_KEYBOARD - split_pre_init(); - thisHand = isLeftHand ? 0 : (ROWS_PER_HAND); thatHand = ROWS_PER_HAND - thisHand; #endif @@ -156,10 +154,6 @@ __attribute__((weak)) void matrix_init(void) { debounce_init(ROWS_PER_HAND); matrix_init_quantum(); - -#ifdef SPLIT_KEYBOARD - split_post_init(); -#endif } __attribute__((weak)) uint8_t matrix_scan(void) { |