On Fri, Feb 27, 2015 at 6:42 PM, Stephen Boyd <sb...@codeaurora.org> wrote: > The problem is the patch was written before struct clk_core moved into > the clk.c file and then applied after it moved. So before the move the > order of includes would cause the struct definition to be before the > place where the tracepoint macros were expanded. The fix is to move the > tracepoint include after the struct clk_core definition: > > -----8<---- > > diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c > index 9aee501b8284..392477033990 100644 > --- a/drivers/clk/clk.c > +++ b/drivers/clk/clk.c > @@ -22,9 +22,6 @@ > #include <linux/init.h> > #include <linux/sched.h> > > -#define CREATE_TRACE_POINTS > -#include <trace/events/clk.h> > - > #include "clk.h" > > static DEFINE_SPINLOCK(enable_lock); > @@ -80,6 +77,9 @@ struct clk_core { > struct kref ref; > }; > > +#define CREATE_TRACE_POINTS > +#include <trace/events/clk.h> > + > struct clk { > struct clk_core *core; > const char *dev_id;
Acked-by: Geert Uytterhoeven <geert+rene...@glider.be> Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- ge...@linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when I'm talking to journalists I just say "programmer" or something like that. -- Linus Torvalds -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/