diff options
| author | Mike Frysinger <vapier@gentoo.org> | 2010-06-02 05:08:58 -0400 | 
|---|---|---|
| committer | Mike Frysinger <vapier@gentoo.org> | 2010-07-05 05:30:07 -0400 | 
| commit | ca86ba11da0f3e2971de58dfd171d1cd617b39d6 (patch) | |
| tree | af3256473bcea602b47452ac79ef6d1151d3539d | |
| parent | c5530555f82f6fbaf51656e9ba10e295d3c5f195 (diff) | |
| download | olio-uboot-2014.01-ca86ba11da0f3e2971de58dfd171d1cd617b39d6.tar.xz olio-uboot-2014.01-ca86ba11da0f3e2971de58dfd171d1cd617b39d6.zip | |
Blackfin: back out status_led.h stubs
When boards define CONFIG_BOARD_SPECIFIC_LED, the common led definitions
are OK for Blackfin boards.  So switch the few boards using these over to
the common code.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
| -rw-r--r-- | include/configs/bf526-ezbrd.h | 6 | ||||
| -rw-r--r-- | include/configs/bf533-stamp.h | 6 | ||||
| -rw-r--r-- | include/status_led.h | 3 | 
3 files changed, 0 insertions, 15 deletions
| diff --git a/include/configs/bf526-ezbrd.h b/include/configs/bf526-ezbrd.h index 711fa27b4..52aeb5cdf 100644 --- a/include/configs/bf526-ezbrd.h +++ b/include/configs/bf526-ezbrd.h @@ -161,12 +161,6 @@  /* #define CONFIG_STATUS_LED */  #ifdef CONFIG_STATUS_LED  #define CONFIG_BOARD_SPECIFIC_LED -#ifndef __ASSEMBLY__ -typedef unsigned int led_id_t; -void __led_init(led_id_t mask, int state); -void __led_set(led_id_t mask, int state); -void __led_toggle(led_id_t mask); -#endif  /* use LED0 to indicate booting/alive */  #define STATUS_LED_BOOT 0  #define STATUS_LED_BIT 1 diff --git a/include/configs/bf533-stamp.h b/include/configs/bf533-stamp.h index 80c48847e..d5e82cae1 100644 --- a/include/configs/bf533-stamp.h +++ b/include/configs/bf533-stamp.h @@ -231,12 +231,6 @@  /* #define CONFIG_STATUS_LED */  #ifdef CONFIG_STATUS_LED  #define CONFIG_BOARD_SPECIFIC_LED -#ifndef __ASSEMBLY__ -typedef unsigned int led_id_t; -void __led_init(led_id_t mask, int state); -void __led_set(led_id_t mask, int state); -void __led_toggle(led_id_t mask); -#endif  /* use LED1 to indicate booting/alive */  #define STATUS_LED_BOOT 0  #define STATUS_LED_BIT 1 diff --git a/include/status_led.h b/include/status_led.h index 9dbf01fca..f2135954a 100644 --- a/include/status_led.h +++ b/include/status_led.h @@ -346,9 +346,6 @@ void status_led_set  (int led, int state);  #elif defined(CONFIG_NIOS2)  /* XXX empty just to avoid the error */  /************************************************************************/ -#elif defined(CONFIG_BLACKFIN) -/* XXX empty just to avoid the error */ -/************************************************************************/  #elif defined(CONFIG_V38B)  # define STATUS_LED_BIT		0x0010			/* Timer7 GPIO */ |