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-Tag: iomap-folio-5.17-old~2952^2~15 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=7ba031e8b74c6aa156a0d9867dc13cf817d52047;p=users%2Fwilly%2Flinux.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 c3be18b4f27b..4833b6a82ce7 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;