summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorQuentin Schulz <[email protected]>2025-11-19 17:43:46 +0100
committerTom Rini <[email protected]>2025-12-05 10:34:52 -0600
commitc31f51d502af4d9897d4d9e4d0048912f0deff6f (patch)
tree3f14c8cf47048a782c4375f4b18ff9f8c435c2d2 /include
parentabc34fa944aefca393ca30ffc05cb608c3cb7ade (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 'include')
-rw-r--r--include/status_led.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/include/status_led.h b/include/status_led.h
index 56d519f6d53..85e583f18c8 100644
--- a/include/status_led.h
+++ b/include/status_led.h
@@ -70,25 +70,15 @@ static inline void status_led_boot_blink(void) { }
* Coloured LEDs API
*/
#ifndef __ASSEMBLY__
-void coloured_LED_init(void);
void red_led_on(void);
void red_led_off(void);
void green_led_on(void);
void green_led_off(void);
-void yellow_led_on(void);
-void yellow_led_off(void);
-void blue_led_on(void);
-void blue_led_off(void);
#else
- .extern LED_init
.extern red_led_on
.extern red_led_off
- .extern yellow_led_on
- .extern yellow_led_off
.extern green_led_on
.extern green_led_off
- .extern blue_led_on
- .extern blue_led_off
#endif
#endif /* _STATUS_LED_H_ */