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/system76 | |
| parent | 20ae67ba01c4fd934ae73476a17c8e7d36c821d0 (diff) | |
Refactor use of `matrix_scan_kb` (#24200)
Diffstat (limited to 'keyboards/system76')
| -rw-r--r-- | keyboards/system76/launch_1/launch_1.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/keyboards/system76/launch_1/launch_1.c b/keyboards/system76/launch_1/launch_1.c index 630305194e..dbe697c19d 100644 --- a/keyboards/system76/launch_1/launch_1.c +++ b/keyboards/system76/launch_1/launch_1.c @@ -143,10 +143,8 @@ void matrix_init_kb(void) { matrix_init_user(); } -void matrix_scan_kb(void) { +void housekeeping_task_kb(void) { usb_mux_event(); - - matrix_scan_user(); } #define LEVEL(value) (uint8_t)(((uint16_t)value) * ((uint16_t)RGB_MATRIX_MAXIMUM_BRIGHTNESS) / ((uint16_t)255)) |