Browse Source

lib_ppc/interrupts.c: make board_show_activity() a weak function

This allows to use show_activity() without having to
define an empty board_show_activity() function.

Signed-off-by: Wolfgang Denk <wd@denx.de>
Wolfgang Denk 16 years ago
parent
commit
aab2bf0202
1 changed files with 6 additions and 1 deletions
  1. 6 1
      lib_ppc/interrupts.c

+ 6 - 1
lib_ppc/interrupts.c

@@ -32,7 +32,12 @@
 #endif
 
 #ifdef CONFIG_SHOW_ACTIVITY
-	extern void board_show_activity (ulong);
+void board_show_activity (ulong) __attribute__((weak, alias("__board_show_activity")));
+
+void __board_show_activity (ulong dummy)
+{
+	return;
+}
 #endif /* CONFIG_SHOW_ACTIVITY */
 
 #ifndef CFG_WATCHDOG_FREQ