diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2008-12-11 16:14:23 +0100 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-12-12 09:26:13 +0100 |
commit | da485e0cb16726797e99a595a399b9fc721b91bc (patch) | |
tree | 9efcec80a90920631de0aa216331af655a396d8d /include/trace/boot.h | |
parent | 8001530d5af707eb9a158839c8f651eb6c1cb3c2 (diff) |
tracing/fastboot: include missing headers
For now include/trace/boot.h doesn't need to include necessary headers
for its functions and structures because the files that include it already
do it.
But boot.h could be needed as well for further uses on other files.
So, this patch adds the necessary headers for future purposes...
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/trace/boot.h')
-rw-r--r-- | include/trace/boot.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/trace/boot.h b/include/trace/boot.h index 3ec58b4b7512..088ea089e31d 100644 --- a/include/trace/boot.h +++ b/include/trace/boot.h @@ -1,6 +1,10 @@ #ifndef _LINUX_TRACE_BOOT_H #define _LINUX_TRACE_BOOT_H +#include <linux/module.h> +#include <linux/kallsyms.h> +#include <linux/init.h> + /* * Structure which defines the trace of an initcall * while it is called. |