aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ftrace.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/ftrace.h')
-rw-r--r--include/linux/ftrace.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/ftrace.h b/include/linux/ftrace.h
index ed53265d1f63..5812dba4ee24 100644
--- a/include/linux/ftrace.h
+++ b/include/linux/ftrace.h
@@ -225,9 +225,11 @@ struct boot_trace {
225#ifdef CONFIG_BOOT_TRACER 225#ifdef CONFIG_BOOT_TRACER
226extern void trace_boot(struct boot_trace *it, initcall_t fn); 226extern void trace_boot(struct boot_trace *it, initcall_t fn);
227extern void start_boot_trace(void); 227extern void start_boot_trace(void);
228extern void stop_boot_trace(void);
228#else 229#else
229static inline void trace_boot(struct boot_trace *it, initcall_t fn) { } 230static inline void trace_boot(struct boot_trace *it, initcall_t fn) { }
230static inline void start_boot_trace(void) { } 231static inline void start_boot_trace(void) { }
232static inline void stop_boot_trace(void) { }
231#endif 233#endif
232 234
233 235