[airborne] fix code style on (nearly) all files

```
find sw/airborne/ -regextype posix-extended -regex 'sw/airborne/.*(chibios-libopencm3|lpcusb|efsl|lpc21/include|lpc21/test/bootloader|subsystems/ahrs)' -prune -o -name '*.[ch]' -exec ./fix_code_style.sh {} +
```

ignored ahrs (for now) to not create unnecessary conflicts for some pending changes..
This commit is contained in:
Felix Ruess
2014-12-17 02:15:06 +01:00
parent cd1b8a9f2a
commit 603b40a513
832 changed files with 23883 additions and 21773 deletions
+3 -2
View File
@@ -61,7 +61,8 @@
#endif
#endif /* PERIPHERALS_AUTO_INIT */
void mcu_init(void) {
void mcu_init(void)
{
mcu_arch_init();
@@ -167,7 +168,7 @@ void mcu_init(void) {
#endif
#else
INFO("PERIPHERALS_AUTO_INIT not enabled! Peripherals (including sys_time) need explicit initialization.")
INFO("PERIPHERALS_AUTO_INIT not enabled! Peripherals (including sys_time) need explicit initialization.")
#endif /* PERIPHERALS_AUTO_INIT */
}