diff options
| author | Joel Challis <git@zvecr.com> | 2023-02-11 03:47:17 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-11 03:47:17 +0000 |
| commit | 11d49d00e74618500e5c51e4c7f858eb906ccea8 (patch) | |
| tree | ee827f3ed92a56861f6f5bf1d5f33d6068458d2c /keyboards/dichotomy | |
| parent | 99918945149f98cf73f9365b0ad49a2fc07d1152 (diff) | |
Remove matrix_init_quantum/matrix_scan_quantum (#19806)
Diffstat (limited to 'keyboards/dichotomy')
| -rwxr-xr-x | keyboards/dichotomy/matrix.c | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/keyboards/dichotomy/matrix.c b/keyboards/dichotomy/matrix.c index 0799554f0a..a3c94275eb 100755 --- a/keyboards/dichotomy/matrix.c +++ b/keyboards/dichotomy/matrix.c | |||
| @@ -54,16 +54,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 54 | static matrix_row_t matrix[MATRIX_ROWS]; | 54 | static matrix_row_t matrix[MATRIX_ROWS]; |
| 55 | 55 | ||
| 56 | __attribute__ ((weak)) | 56 | __attribute__ ((weak)) |
| 57 | void matrix_init_quantum(void) { | ||
| 58 | matrix_init_kb(); | ||
| 59 | } | ||
| 60 | |||
| 61 | __attribute__ ((weak)) | ||
| 62 | void matrix_scan_quantum(void) { | ||
| 63 | matrix_scan_kb(); | ||
| 64 | } | ||
| 65 | |||
| 66 | __attribute__ ((weak)) | ||
| 67 | void matrix_init_kb(void) { | 57 | void matrix_init_kb(void) { |
| 68 | matrix_init_user(); | 58 | matrix_init_user(); |
| 69 | } | 59 | } |
| @@ -92,7 +82,7 @@ uint8_t matrix_cols(void) { | |||
| 92 | } | 82 | } |
| 93 | 83 | ||
| 94 | void matrix_init(void) { | 84 | void matrix_init(void) { |
| 95 | matrix_init_quantum(); | 85 | matrix_init_kb(); |
| 96 | uart_init(1000000); | 86 | uart_init(1000000); |
| 97 | } | 87 | } |
| 98 | 88 | ||
| @@ -190,7 +180,7 @@ uint8_t matrix_scan(void) | |||
| 190 | } | 180 | } |
| 191 | //matrix_print(); | 181 | //matrix_print(); |
| 192 | 182 | ||
| 193 | matrix_scan_quantum(); | 183 | matrix_scan_kb(); |
| 194 | return 1; | 184 | return 1; |
| 195 | } | 185 | } |
| 196 | 186 | ||
