summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2020-02-01 09:46:34 +0000
committerQMK Bot <hello@qmk.fm>2020-02-01 09:46:34 +0000
commit1a79f14e4390d088fcf6b26fe3b62549875c3e71 (patch)
tree1bc058e4594606de12cd8ca24832a78af56d33c4
parent4e6d1ae0eaafb64d04ae6a5e00d2ef41623248cf (diff)
format code according to conventions [skip ci]0.7.133
-rw-r--r--tmk_core/common/chibios/timer.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/tmk_core/common/chibios/timer.c b/tmk_core/common/chibios/timer.c
index 66c4a6458e..ed5cfe1b05 100644
--- a/tmk_core/common/chibios/timer.c
+++ b/tmk_core/common/chibios/timer.c
@@ -28,10 +28,6 @@ uint32_t timer_read32(void) {
return current_time_ms;
}
-uint16_t timer_elapsed(uint16_t last) {
- return TIMER_DIFF_16(timer_read(), last);
-}
+uint16_t timer_elapsed(uint16_t last) { return TIMER_DIFF_16(timer_read(), last); }
-uint32_t timer_elapsed32(uint32_t last) {
- return TIMER_DIFF_32(timer_read32(), last);
-}
+uint32_t timer_elapsed32(uint32_t last) { return TIMER_DIFF_32(timer_read32(), last); }