diff options
| author | Quentin Schulz <[email protected]> | 2025-11-19 17:43:49 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-12-05 10:34:52 -0600 |
| commit | 43093811a4056dc31767ad5b304b4674b4c7aed8 (patch) | |
| tree | ac87de65077ad38e42040bb200ed1a5dca089d67 /arch/powerpc | |
| parent | 715107089fb8823a4419f3a3bf2f26816450324c (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 'arch/powerpc')
| -rw-r--r-- | arch/powerpc/lib/interrupts.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/arch/powerpc/lib/interrupts.c b/arch/powerpc/lib/interrupts.c index 46208ae4c71..f7d938ba5e0 100644 --- a/arch/powerpc/lib/interrupts.c +++ b/arch/powerpc/lib/interrupts.c @@ -11,9 +11,6 @@ #include <irq_func.h> #include <asm/processor.h> #include <watchdog.h> -#ifdef CONFIG_LED_STATUS -#include <status_led.h> -#endif #include <asm/ptrace.h> #ifndef CONFIG_MPC83XX_TIMER @@ -82,10 +79,6 @@ void timer_interrupt(struct pt_regs *regs) if (CFG_SYS_WATCHDOG_FREQ && (timestamp % (CFG_SYS_WATCHDOG_FREQ)) == 0) schedule(); #endif /* CONFIG_WATCHDOG || CONFIG_HW_WATCHDOG */ - -#ifdef CONFIG_LED_STATUS - status_led_tick(timestamp); -#endif /* CONFIG_LED_STATUS */ } ulong get_timer (ulong base) |
