From: Quentin Schulz <[email protected]> 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 <[email protected]> --- board/siemens/corvus/board.c | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/board/siemens/corvus/board.c b/board/siemens/corvus/board.c index a8714e055d7..670bcab484c 100644 --- a/board/siemens/corvus/board.c +++ b/board/siemens/corvus/board.c @@ -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; -- 2.51.1

