summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorQuentin Schulz <[email protected]>2025-11-19 18:01:13 +0100
committerTom Rini <[email protected]>2025-12-05 13:38:09 -0600
commit16415e9563ec04241c58f0a85cd2fc1d89f3033e (patch)
tree0d9a1cd594c14ca9e026df106df7c3b9680a655c /include
parentbb35d28701a3fac735c2dc891643086b80abfab3 (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 'include')
-rw-r--r--include/status_led.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/status_led.h b/include/status_led.h
index 85e583f18c8..8e8b19f8c19 100644
--- a/include/status_led.h
+++ b/include/status_led.h
@@ -72,13 +72,9 @@ static inline void status_led_boot_blink(void) { }
#ifndef __ASSEMBLY__
void red_led_on(void);
void red_led_off(void);
-void green_led_on(void);
-void green_led_off(void);
#else
.extern red_led_on
.extern red_led_off
- .extern green_led_on
- .extern green_led_off
#endif
#endif /* _STATUS_LED_H_ */