summaryrefslogtreecommitdiffstats
path: root/platforms/avr/bootloaders/caterina.c
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-12-27 02:20:52 -0800
committerGitHub <noreply@github.com>2021-12-27 21:20:52 +1100
commitbe2265d0d173ac347f0ee9ed809c2a689bf835a2 (patch)
tree97c03e4d12b12e4d2e902efe8a7ab98174dfee5c /platforms/avr/bootloaders/caterina.c
parent1127e0da6b9b88b52a5d4ca33489f5ea5343b00f (diff)
Format code according to conventions (#15593)
Diffstat (limited to 'platforms/avr/bootloaders/caterina.c')
-rw-r--r--platforms/avr/bootloaders/caterina.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/platforms/avr/bootloaders/caterina.c b/platforms/avr/bootloaders/caterina.c
index 1b43ed4e44..82a16a3765 100644
--- a/platforms/avr/bootloaders/caterina.c
+++ b/platforms/avr/bootloaders/caterina.c
@@ -18,8 +18,7 @@
#include <avr/wdt.h>
-__attribute__((weak))
-void bootloader_jump(void) {
+__attribute__((weak)) void bootloader_jump(void) {
// this block may be optional
// TODO: figure it out
@@ -35,5 +34,6 @@ void bootloader_jump(void) {
wdt_enable(WDTO_60MS);
// wait for watchdog timer to trigger
- while (1) { }
+ while (1) {
+ }
}