From b2d0e8a491f347d43b482808a744642fc975afab Mon Sep 17 00:00:00 2001 From: Joel Challis Date: Fri, 5 Feb 2021 13:27:24 +0000 Subject: Manually run formatting job (#11797) --- tmk_core/common/keyboard.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'tmk_core') diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c index f4e9b11840..7120cdacdf 100644 --- a/tmk_core/common/keyboard.c +++ b/tmk_core/common/keyboard.c @@ -98,8 +98,8 @@ along with this program. If not, see . // Only enable this if console is enabled to print to #if defined(DEBUG_MATRIX_SCAN_RATE) -static uint32_t matrix_timer = 0; -static uint32_t matrix_scan_count = 0; +static uint32_t matrix_timer = 0; +static uint32_t matrix_scan_count = 0; static uint32_t last_matrix_scan_count = 0; void matrix_scan_perf_task(void) { @@ -111,14 +111,12 @@ void matrix_scan_perf_task(void) { dprintf("matrix scan frequency: %lu\n", matrix_scan_count); # endif last_matrix_scan_count = matrix_scan_count; - matrix_timer = timer_now; - matrix_scan_count = 0; + matrix_timer = timer_now; + matrix_scan_count = 0; } } -uint32_t get_matrix_scan_rate(void) { - return last_matrix_scan_count; -} +uint32_t get_matrix_scan_rate(void) { return last_matrix_scan_count; } #else # define matrix_scan_perf_task() #endif -- cgit v1.2.3