diff options
| author | Quentin Schulz <[email protected]> | 2025-11-19 17:43:46 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-12-05 10:34:52 -0600 |
| commit | c31f51d502af4d9897d4d9e4d0048912f0deff6f (patch) | |
| tree | 3f14c8cf47048a782c4375f4b18ff9f8c435c2d2 /common | |
| parent | abc34fa944aefca393ca30ffc05cb608c3cb7ade (diff) | |
led: remove coloured_LED_init, yellow and blue status LEDs in legacy API
The last user of coloured_LED_init has been recently removed, so we can
remove all places it's called and defined as it does nothing now.
Nobody makes use of the yellow and blue status LEDs from the legacy API,
so let's remove all references to it.
Signed-off-by: Quentin Schulz <[email protected]>
Diffstat (limited to 'common')
| -rw-r--r-- | common/board_f.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/common/board_f.c b/common/board_f.c index c8a612d6070..224cc0ac561 100644 --- a/common/board_f.c +++ b/common/board_f.c @@ -65,15 +65,10 @@ DECLARE_GLOBAL_DATA_PTR; ************************************************************************ * May be supplied by boards if desired */ -__weak void coloured_LED_init(void) {} __weak void red_led_on(void) {} __weak void red_led_off(void) {} __weak void green_led_on(void) {} __weak void green_led_off(void) {} -__weak void yellow_led_on(void) {} -__weak void yellow_led_off(void) {} -__weak void blue_led_on(void) {} -__weak void blue_led_off(void) {} /* * Why is gd allocated a register? Prior to reloc it might be better to |
