diff options
author | Mike Frysinger <vapier@gentoo.org> | 2010-06-02 05:12:11 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2010-07-05 05:30:07 -0400 |
commit | a84774f56a97c5a2b0521b85ac9eb8b1c7fb15b3 (patch) | |
tree | 9368fa520b62623a8301d6996ffd9054df76c574 /include/configs/bf526-ezbrd.h | |
parent | ca86ba11da0f3e2971de58dfd171d1cd617b39d6 (diff) | |
download | u-boot-imx-a84774f56a97c5a2b0521b85ac9eb8b1c7fb15b3.zip u-boot-imx-a84774f56a97c5a2b0521b85ac9eb8b1c7fb15b3.tar.gz u-boot-imx-a84774f56a97c5a2b0521b85ac9eb8b1c7fb15b3.tar.bz2 |
Blackfin: switch to common GPIO LED driver
Now that we have a unified gpio layer, the different status led
implementations can be switched to the common gpio led driver.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/configs/bf526-ezbrd.h')
-rw-r--r-- | include/configs/bf526-ezbrd.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/configs/bf526-ezbrd.h b/include/configs/bf526-ezbrd.h index 52aeb5c..ecda216 100644 --- a/include/configs/bf526-ezbrd.h +++ b/include/configs/bf526-ezbrd.h @@ -160,17 +160,19 @@ /* define to enable run status via led */ /* #define CONFIG_STATUS_LED */ #ifdef CONFIG_STATUS_LED +#define CONFIG_GPIO_LED #define CONFIG_BOARD_SPECIFIC_LED /* use LED0 to indicate booting/alive */ #define STATUS_LED_BOOT 0 -#define STATUS_LED_BIT 1 +#define STATUS_LED_BIT GPIO_PF8 #define STATUS_LED_STATE STATUS_LED_ON #define STATUS_LED_PERIOD (CONFIG_SYS_HZ / 4) /* use LED1 to indicate crash */ #define STATUS_LED_CRASH 1 -#define STATUS_LED_BIT1 2 +#define STATUS_LED_BIT1 GPIO_PG11 #define STATUS_LED_STATE1 STATUS_LED_ON #define STATUS_LED_PERIOD1 (CONFIG_SYS_HZ / 2) +/* #define STATUS_LED_BIT2 GPIO_PG12 */ #endif |