Move ao_led_init to end of file to be consistent with other files
[fw/altos] / ao_led.c
index c46e2eba29379481c18b1d4df0f710df765d5d38..f2bc179adfc21663a10d62f984ee5a7f25baeccd 100644 (file)
--- a/ao_led.c
+++ b/ao_led.c
@@ -3,8 +3,7 @@
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * the Free Software Foundation; version 2 of the License.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
 
 #include "ao.h"
 
-void
-ao_led_init(void)
-{
-       P1SEL &= ~3;
-       P1 &= ~3;
-       P1DIR |= 3;
-}
-
 void
 ao_led_on(uint8_t colors)
 {
@@ -52,3 +43,10 @@ ao_led_for(uint8_t colors, uint16_t ticks)
        ao_led_off(colors);
 }
 
+void
+ao_led_init(void)
+{
+       P1SEL &= ~3;
+       P1 &= ~3;
+       P1DIR |= 3;
+}