diff options
| author | Kim Phillips <kim.phillips@freescale.com> | 2007-10-18 10:02:16 -0500 |
|---|---|---|
| committer | Kim Phillips <kim.phillips@freescale.com> | 2007-10-18 10:02:16 -0500 |
| commit | f147dd15e840230a3911c649b2a81c749d32db1c (patch) | |
| tree | 03023c12770b6c33c4e9f75615c4a3319d497c90 /include/status_led.h | |
| parent | 8ffc774993725a0646aa8d1995d968c95aee9e3c (diff) | |
| parent | eff786a9b89144478f478c4193fcad5b498feb72 (diff) | |
| download | olio-uboot-2014.01-f147dd15e840230a3911c649b2a81c749d32db1c.tar.xz olio-uboot-2014.01-f147dd15e840230a3911c649b2a81c749d32db1c.zip | |
Merge git://www.denx.de/git/u-boot
Diffstat (limited to 'include/status_led.h')
| -rw-r--r-- | include/status_led.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/status_led.h b/include/status_led.h index a64681425..d12bb67c2 100644 --- a/include/status_led.h +++ b/include/status_led.h @@ -383,6 +383,27 @@ extern void __led_set (led_id_t mask, int state); # include <asm/status_led.h> #endif +/* + * 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); +#else + .extern LED_init + .extern red_LED_on + .extern red_LED_off + .extern yellow_LED_on + .extern yellow_LED_off + .extern green_LED_on + .extern green_LED_off +#endif + #endif /* CONFIG_STATUS_LED */ #endif /* _STATUS_LED_H_ */ |