From: Paul Mundt Date: Mon, 22 Dec 2008 10:32:27 +0000 (+0900) Subject: sh: oprofile: Fix up the module build. X-Git-Tag: v2.6.29-rc1~591^2 X-Git-Url: http://www.pilppa.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=59de580af1c2fd671b0cb27c41ff958859ae5288;p=linux-2.6-omap-h63xx.git sh: oprofile: Fix up the module build. Signed-off-by: Paul Mundt --- diff --git a/arch/sh/oprofile/backtrace.c b/arch/sh/oprofile/backtrace.c index 418e834654c..9499a2914f8 100644 --- a/arch/sh/oprofile/backtrace.c +++ b/arch/sh/oprofile/backtrace.c @@ -85,11 +85,7 @@ kernel_backtrace(unsigned long *stackaddr, struct pt_regs *regs) */ do { addr = *stackaddr++; - - if (__kernel_text_address(addr)) { - oprofile_add_trace(addr); - break; - } + oprofile_add_trace(addr); } while (valid_kernel_stack(stackaddr, regs)); return stackaddr;