summaryrefslogtreecommitdiff
path: root/drivers/timer
diff options
context:
space:
mode:
authorQuentin Schulz <[email protected]>2025-11-19 17:43:49 +0100
committerTom Rini <[email protected]>2025-12-05 10:34:52 -0600
commit43093811a4056dc31767ad5b304b4674b4c7aed8 (patch)
treeac87de65077ad38e42040bb200ed1a5dca089d67 /drivers/timer
parent715107089fb8823a4419f3a3bf2f26816450324c (diff)
powerpc: remove unused legacy LED API
No PPC upstream defconfig actually enables CONFIG_LED_STATUS and we're trying to get rid of the legacy LED API, so let's remove one of its last users. Signed-off-by: Quentin Schulz <[email protected]>
Diffstat (limited to 'drivers/timer')
-rw-r--r--drivers/timer/mpc83xx_timer.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/timer/mpc83xx_timer.c b/drivers/timer/mpc83xx_timer.c
index f92009e4ccc..07fb66065b7 100644
--- a/drivers/timer/mpc83xx_timer.c
+++ b/drivers/timer/mpc83xx_timer.c
@@ -9,7 +9,6 @@
#include <dm.h>
#include <irq_func.h>
#include <log.h>
-#include <status_led.h>
#include <sysinfo.h>
#include <time.h>
#include <timer.h>
@@ -178,10 +177,6 @@ void timer_interrupt(struct pt_regs *regs)
if (CFG_SYS_WATCHDOG_FREQ && (priv->timestamp % (CFG_SYS_WATCHDOG_FREQ)) == 0)
schedule();
#endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */
-
-#ifdef CONFIG_LED_STATUS
- status_led_tick(priv->timestamp);
-#endif /* CONFIG_LED_STATUS */
}
void wait_ticks(ulong ticks)