summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2019-11-14 22:57:10 +0300
committerTom Rini <trini@konsulko.com>2019-12-03 02:23:06 +0300
commit9ce2aa171039f1097e2d293235e733cce94cbabb (patch)
tree4e9bc6a875ea9959c4ec5c5d5a9267997e94b1db /arch
parent62f9b654472888dc46feea74f95edb837f49333a (diff)
downloadu-boot-9ce2aa171039f1097e2d293235e733cce94cbabb.tar.xz
Drop CONFIG_SHOW_ACTIVITY
This feature is not enabled by any board. Drop it. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/powerpc/lib/interrupts.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/arch/powerpc/lib/interrupts.c b/arch/powerpc/lib/interrupts.c
index 19682cfcfa..e589933f56 100644
--- a/arch/powerpc/lib/interrupts.c
+++ b/arch/powerpc/lib/interrupts.c
@@ -15,15 +15,6 @@
#endif
#ifndef CONFIG_MPC83XX_TIMER
-#ifdef CONFIG_SHOW_ACTIVITY
-void board_show_activity (ulong) __attribute__((weak, alias("__board_show_activity")));
-
-void __board_show_activity (ulong dummy)
-{
- return;
-}
-#endif /* CONFIG_SHOW_ACTIVITY */
-
#ifndef CONFIG_SYS_WATCHDOG_FREQ
#define CONFIG_SYS_WATCHDOG_FREQ (CONFIG_SYS_HZ / 2)
#endif
@@ -94,10 +85,6 @@ void timer_interrupt (struct pt_regs *regs)
#ifdef CONFIG_LED_STATUS
status_led_tick (timestamp);
#endif /* CONFIG_LED_STATUS */
-
-#ifdef CONFIG_SHOW_ACTIVITY
- board_show_activity (timestamp);
-#endif /* CONFIG_SHOW_ACTIVITY */
}
ulong get_timer (ulong base)