diff options
| author | Quentin Schulz <[email protected]> | 2025-11-19 18:01:13 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-12-05 13:38:09 -0600 |
| commit | 16415e9563ec04241c58f0a85cd2fc1d89f3033e (patch) | |
| tree | 0d9a1cd594c14ca9e026df106df7c3b9680a655c /cmd | |
| parent | bb35d28701a3fac735c2dc891643086b80abfab3 (diff) | |
led: remove support for green status led in legacy API
The last user of it was removed in a previous commit so let's remove its
support entirely.
Signed-off-by: Quentin Schulz <[email protected]>
Reviewed-by: Heiko Schocher <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/legacy_led.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/cmd/legacy_led.c b/cmd/legacy_led.c index 609a4b08e0a..2c6d606f48b 100644 --- a/cmd/legacy_led.c +++ b/cmd/legacy_led.c @@ -45,9 +45,6 @@ static const led_tbl_t led_commands[] = { { "5", CONFIG_LED_STATUS_BIT5, NULL, NULL, NULL }, #endif #endif -#ifdef CONFIG_LED_STATUS_GREEN - { "green", CONFIG_LED_STATUS_GREEN, green_led_off, green_led_on, NULL }, -#endif #ifdef CONFIG_LED_STATUS_RED { "red", CONFIG_LED_STATUS_RED, red_led_off, red_led_on, NULL }, #endif @@ -162,9 +159,6 @@ U_BOOT_CMD( "5|" #endif #endif -#ifdef CONFIG_LED_STATUS_GREEN - "green|" -#endif #ifdef CONFIG_LED_STATUS_RED "red|" #endif |
