Commit 7ba031e8 authored by Steven Rostedt (VMware)'s avatar Steven Rostedt (VMware)
Browse files

ftrace: Format variable declarations of ftrace_allocate_records



I hate when unrelated variables are declared on the same line.
Split them.

Signed-off-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
parent b40c6eab
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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;