summaryrefslogtreecommitdiffstats
path: root/include/status_led.h
diff options
context:
space:
mode:
authorJeroen Hofstee <jeroen@myspectrum.nl>2014-06-23 23:20:19 +0200
committerTom Rini <trini@ti.com>2014-07-18 17:53:23 -0400
commitc5d4001a1cbca546f83ec7f2299c664fb00e6451 (patch)
treef110afcbefbf28e8aa50c00247181e2de7ab0d9c /include/status_led.h
parent0e350f81e1ca7d103fd9685725f9c4b0d9e80632 (diff)
downloadblackbird-obmc-uboot-c5d4001a1cbca546f83ec7f2299c664fb00e6451.tar.gz
blackbird-obmc-uboot-c5d4001a1cbca546f83ec7f2299c664fb00e6451.zip
common: board_f: cosmetic use __weak for leds
First of all this looks a lot better, but it also prevents a gcc warning (W=1), that the weak function has no previous prototype. cc: Simon Glass <sjg@chromium.org> Signed-off-by: Jeroen Hofstee <jeroen@myspectrum.nl> Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'include/status_led.h')
-rw-r--r--include/status_led.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/include/status_led.h b/include/status_led.h
index 0eb91b8695..b8aaaf78fc 100644
--- a/include/status_led.h
+++ b/include/status_led.h
@@ -272,19 +272,21 @@ extern void __led_set (led_id_t mask, int state);
# include <asm/status_led.h>
#endif
+#endif /* CONFIG_STATUS_LED */
+
/*
* Coloured LEDs API
*/
#ifndef __ASSEMBLY__
-extern void coloured_LED_init (void);
-extern void red_led_on(void);
-extern void red_led_off(void);
-extern void green_led_on(void);
-extern void green_led_off(void);
-extern void yellow_led_on(void);
-extern void yellow_led_off(void);
-extern void blue_led_on(void);
-extern void blue_led_off(void);
+void coloured_LED_init(void);
+void red_led_on(void);
+void red_led_off(void);
+void green_led_on(void);
+void green_led_off(void);
+void yellow_led_on(void);
+void yellow_led_off(void);
+void blue_led_on(void);
+void blue_led_off(void);
#else
.extern LED_init
.extern red_led_on
@@ -297,6 +299,4 @@ extern void blue_led_off(void);
.extern blue_led_off
#endif
-#endif /* CONFIG_STATUS_LED */
-
#endif /* _STATUS_LED_H_ */
OpenPOWER on IntegriCloud