corvus: remove green led support

green_led_on and green_led_off are only called by the legacy LED command
(CONFIG_LED_STATUS_CMD) when CONFIG_LED_STATUS_GREEN is enabled, both of
which aren't enabled for corvus, so let's simply remove it as it's dead
code.

Signed-off-by: Quentin Schulz <quentin.schulz@cherry.de>
Reviewed-by: Heiko Schocher <hs@nabladev.com>
This commit is contained in:
Quentin Schulz
2025-12-05 13:38:09 -06:00
committed by Tom Rini
parent 1a5e3be3ac
commit bb35d28701
-11
View File
@@ -53,7 +53,6 @@ static void corvus_request_gpio(void)
gpio_request(AT91_PIN_PB18, "SPICS1");
gpio_request(AT91_PIN_PB3, "SPICS0");
gpio_request(AT91_PIN_PD31, "red led"); /* this is the user1 led */
gpio_request(AT91_PIN_PD0, "green led"); /* this is the user2 led */
}
void red_led_on(void)
@@ -66,16 +65,6 @@ void red_led_off(void)
gpio_set_value(AT91_PIN_PD31, 0);
}
void green_led_on(void)
{
gpio_set_value(AT91_PIN_PD0, 0);
}
void green_led_off(void)
{
gpio_set_value(AT91_PIN_PD0, 1);
}
static void corvus_nand_hw_init(void)
{
struct at91_smc *smc = (struct at91_smc *)ATMEL_BASE_SMC;