From: Steven Rostedt (VMware) Date: Tue, 6 Oct 2020 00:37:41 +0000 (-0400) Subject: ftrace: Format variable declarations of ftrace_allocate_records X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=7ba031e8b74c6aa156a0d9867dc13cf817d52047;p=linux.git ftrace: Format variable declarations of ftrace_allocate_records I hate when unrelated variables are declared on the same line. Split them. Signed-off-by: Steven Rostedt (VMware) --- diff --git a/kernel/trace/ftrace.c b/kernel/trace/ftrace.c index c3be18b4f27ba..4833b6a82ce78 100644 --- a/kernel/trace/ftrace.c +++ b/kernel/trace/ftrace.c @@ -3129,7 +3129,8 @@ static int ftrace_update_code(struct module *mod, struct ftrace_page *new_pgs) static int ftrace_allocate_records(struct ftrace_page *pg, int count) { int order; - int pages, cnt; + int pages; + int cnt; if (WARN_ON(!count)) return -EINVAL;