From: Steven Rostedt (Red Hat) Date: Wed, 26 Feb 2014 18:12:06 +0000 (-0500) Subject: tracing/module: Replace include of tracepoint.h with jump_label.h in module.h X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b2e285fcb46ab4d91ebbc3a9bd5900f544972a47;p=GitHub%2Fmoto-9609%2Fandroid_kernel_motorola_exynos9610.git tracing/module: Replace include of tracepoint.h with jump_label.h in module.h There's nothing in the module.h header that requires tracepoint.h to be included, and there may be cases that tracepoint.h may need to include module.h, which will cause recursive header issues. But module.h requires seeing HAVE_JUMP_LABEL which is set in jump_label.h which it just coincidentally gets from tracepoint.h. Link: http://lkml.kernel.org/r/20140307084712.5c68641a@gandalf.local.home Acked-by: Rusty Russell Signed-off-by: Steven Rostedt --- diff --git a/include/linux/module.h b/include/linux/module.h index eaf60ff9ba94..5a5053975114 100644 --- a/include/linux/module.h +++ b/include/linux/module.h @@ -15,7 +15,7 @@ #include #include #include -#include +#include #include #include