diff options
| author | Joel Challis | 2024-07-27 07:02:51 +0200 |
|---|---|---|
| committer | GitHub | 2024-07-27 07:02:51 +0200 |
| commit | 02b43b4b603a426627c63e7bd0e48de8e88028e6 (patch) | |
| tree | 4cc018bc3891aa66d180611b23d1339771972022 /keyboards/matrix | |
| parent | 20ae67ba01c4fd934ae73476a17c8e7d36c821d0 (diff) | |
Refactor use of `matrix_scan_kb` (#24200)
Diffstat (limited to 'keyboards/matrix')
| -rw-r--r-- | keyboards/matrix/m20add/m20add.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/keyboards/matrix/m20add/m20add.c b/keyboards/matrix/m20add/m20add.c index ac483e8aab..267c8e5134 100644 --- a/keyboards/matrix/m20add/m20add.c +++ b/keyboards/matrix/m20add/m20add.c @@ -34,11 +34,10 @@ void matrix_init_kb(void) { matrix_init_user(); } -void matrix_scan_kb(void) { +void housekeeping_task_kb(void) { #ifdef RGBLIGHT_ENABLE rgb_ring_task(); #endif - matrix_scan_user(); } static uint16_t caps_lock_pin = DEF_PIN(TCA6424_PORT2, 3); |