]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
ftrace: fix build bug
authorIngo Molnar <mingo@elte.hu>
Mon, 25 Feb 2008 12:38:05 +0000 (13:38 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Fri, 23 May 2008 20:37:04 +0000 (22:37 +0200)
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
include/linux/ftrace.h

index 911d5d80b49fa9c262a3a5064bb8edc0193b7af6..922e23d0196ff1a3c2e25833d59ded92fe0071d5 100644 (file)
@@ -106,16 +106,16 @@ static inline void tracer_disable(void)
 #endif
 
 #ifdef CONFIG_IRQSOFF_TRACER
-  extern void notrace time_hardirqs_on(unsigned long a0, unsigned long a1);
-  extern void notrace time_hardirqs_off(unsigned long a0, unsigned long a1);
+  extern void time_hardirqs_on(unsigned long a0, unsigned long a1);
+  extern void time_hardirqs_off(unsigned long a0, unsigned long a1);
 #else
 # define time_hardirqs_on(a0, a1)              do { } while (0)
 # define time_hardirqs_off(a0, a1)             do { } while (0)
 #endif
 
 #ifdef CONFIG_PREEMPT_TRACER
-  extern void notrace trace_preempt_on(unsigned long a0, unsigned long a1);
-  extern void notrace trace_preempt_off(unsigned long a0, unsigned long a1);
+  extern void trace_preempt_on(unsigned long a0, unsigned long a1);
+  extern void trace_preempt_off(unsigned long a0, unsigned long a1);
 #else
 # define trace_preempt_on(a0, a1)              do { } while (0)
 # define trace_preempt_off(a0, a1)             do { } while (0)