diff options
author | Uri Mashiach <uri.mashiach@compulab.co.il> | 2017-01-19 10:51:45 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-01-21 15:12:33 -0500 |
commit | 2d8d190c8394b43c0989cdb04a50cb48d4e1f8da (patch) | |
tree | a19e034f406aba9bfc07e8ef0d4fafc6fa4a04b7 /board/bf533-stamp | |
parent | 79267edd10fde0815c382157b9cb280166637fac (diff) |
status_led: Kconfig migration
Move all of the status LED feature to drivers/led/Kconfig.
The LED status definitions were moved from the board configuration
files to the defconfig files.
TBD: Move all of the definitions in the include/status_led.h to the
relevant board's defconfig files.
Tested boards: CL-SOM-AM57x, CM-T335
Signed-off-by: Uri Mashiach <uri.mashiach@compulab.co.il>
Diffstat (limited to 'board/bf533-stamp')
-rw-r--r-- | board/bf533-stamp/bf533-stamp.c | 28 |
1 files changed, 18 insertions, 10 deletions
diff --git a/board/bf533-stamp/bf533-stamp.c b/board/bf533-stamp/bf533-stamp.c index eb000a6a88..185a651bec 100644 --- a/board/bf533-stamp/bf533-stamp.c +++ b/board/bf533-stamp/bf533-stamp.c @@ -50,8 +50,8 @@ int misc_init_r(void) #ifdef CONFIG_SHOW_BOOT_PROGRESS -#define STATUS_LED_OFF 0 -#define STATUS_LED_ON 1 +#define CONFIG_LED_STATUS_OFF 0 +#define CONFIG_LED_STATUS_ON 1 static int gpio_setup; @@ -76,24 +76,30 @@ void show_boot_progress(int status) { switch (status) { case BOOTSTAGE_ID_CHECK_MAGIC: - stamp_led_set(STATUS_LED_OFF, STATUS_LED_OFF, STATUS_LED_ON); + stamp_led_set(CONFIG_LED_STATUS_OFF, CONFIG_LED_STATUS_OFF, + CONFIG_LED_STATUS_ON); break; case BOOTSTAGE_ID_CHECK_HEADER: - stamp_led_set(STATUS_LED_OFF, STATUS_LED_ON, STATUS_LED_OFF); + stamp_led_set(CONFIG_LED_STATUS_OFF, CONFIG_LED_STATUS_ON, + CONFIG_LED_STATUS_OFF); break; case BOOTSTAGE_ID_CHECK_CHECKSUM: - stamp_led_set(STATUS_LED_OFF, STATUS_LED_ON, STATUS_LED_ON); + stamp_led_set(CONFIG_LED_STATUS_OFF, CONFIG_LED_STATUS_ON, + CONFIG_LED_STATUS_ON); break; case BOOTSTAGE_ID_CHECK_ARCH: - stamp_led_set(STATUS_LED_ON, STATUS_LED_OFF, STATUS_LED_OFF); + stamp_led_set(CONFIG_LED_STATUS_ON, CONFIG_LED_STATUS_OFF, + CONFIG_LED_STATUS_OFF); break; case BOOTSTAGE_ID_CHECK_IMAGETYPE: case BOOTSTAGE_ID_DECOMP_IMAGE: - stamp_led_set(STATUS_LED_ON, STATUS_LED_OFF, STATUS_LED_ON); + stamp_led_set(CONFIG_LED_STATUS_ON, CONFIG_LED_STATUS_OFF, + CONFIG_LED_STATUS_ON); break; case BOOTSTAGE_ID_KERNEL_LOADED: case BOOTSTAGE_ID_CHECK_BOOT_OS: - stamp_led_set(STATUS_LED_ON, STATUS_LED_ON, STATUS_LED_OFF); + stamp_led_set(CONFIG_LED_STATUS_ON, CONFIG_LED_STATUS_ON, + CONFIG_LED_STATUS_OFF); break; case BOOTSTAGE_ID_BOOT_OS_RETURNED: case BOOTSTAGE_ID_RD_MAGIC: @@ -102,10 +108,12 @@ void show_boot_progress(int status) case BOOTSTAGE_ID_RAMDISK: case BOOTSTAGE_ID_NO_RAMDISK: case BOOTSTAGE_ID_RUN_OS: - stamp_led_set(STATUS_LED_OFF, STATUS_LED_OFF, STATUS_LED_OFF); + stamp_led_set(CONFIG_LED_STATUS_OFF, CONFIG_LED_STATUS_OFF, + CONFIG_LED_STATUS_OFF); break; default: - stamp_led_set(STATUS_LED_ON, STATUS_LED_ON, STATUS_LED_ON); + stamp_led_set(CONFIG_LED_STATUS_ON, CONFIG_LED_STATUS_ON, + CONFIG_LED_STATUS_ON); break; } } |