[PATCH] Blackfin arch: always include linux kallsysms header filein trap c

From: Wu, Bryan
Date: Wed Apr 04 2007 - 02:28:38 EST


[PATCH] Just include linux/kallsyms.h all the time as the header will
handle prototypes/defines when CONFIG_KALLSYMS is disabled ... fixes
build error when disabled due to print_ip_sym not being macroed away

Signed-off-by: Bryan Wu <bryan.wu@xxxxxxxxxx>
---
arch/blackfin/kernel/traps.c | 5 ++---
1 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/arch/blackfin/kernel/traps.c b/arch/blackfin/kernel/traps.c
index f168521..9556b73 100644
--- a/arch/blackfin/kernel/traps.c
+++ b/arch/blackfin/kernel/traps.c
@@ -35,6 +35,8 @@
#include <asm/irq_handler.h>
#include <linux/interrupt.h>
#include <linux/module.h>
+#include <linux/kallsyms.h>
+
#ifdef CONFIG_KGDB
# include <linux/debugger.h>
# include <linux/kgdb.h>
@@ -52,9 +54,6 @@ asmlinkage void trap_c(struct pt_regs *fp);

int kstack_depth_to_print = 48;

-#ifdef CONFIG_KALLSYMS
-#include <linux/kallsyms.h>
-#endif
static int printk_address(unsigned long address)
{
struct vm_list_struct *vml;
--
1.5.0.5

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/