Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

tools lib traceevent: Clean up format of args in cfg80211 plugin

While synchronizing what's in trace-cmd vs what's in perf, I came
across a change that was made when entering the cfg80211 plugin into
the tools/lib/traceevent directory. The function prototype went from:

static unsigned long long process___le16_to_cpup(struct trace_seq *s,
unsigned long long *args)

to:

static unsigned long long
process___le16_to_cpup(struct trace_seq *s,
unsigned long long *args)

I can understand the line break after the long long, but there's no
reason to keep args on a separate line.

Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Link: http://lkml.kernel.org/r/20140612194420.24073744@gandalf.local.home
Signed-off-by: Jiri Olsa <jolsa@kernel.org>

authored by

Steven Rostedt and committed by
Jiri Olsa
24eda087 a21e3a34

+1 -2
+1 -2
tools/lib/traceevent/plugin_cfg80211.c
··· 5 5 #include "event-parse.h" 6 6 7 7 static unsigned long long 8 - process___le16_to_cpup(struct trace_seq *s, 9 - unsigned long long *args) 8 + process___le16_to_cpup(struct trace_seq *s, unsigned long long *args) 10 9 { 11 10 uint16_t *val = (uint16_t *) (unsigned long) args[0]; 12 11 return val ? (long long) le16toh(*val) : 0;