Commit 70e9f4dd authored by Felipe Balbi's avatar Felipe Balbi Committed by Stephen Boyd

clk: add newline character after dumping all clocks

clk_dump() will dump data about all clocks in JSON
format, but it misses a newline character at the
end of the JSON string. This patch adds that missing
newline character.
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
[sboyd@codeaurora.org: Squelch checkpatch with seq_puts()]
Signed-off-by: default avatarStephen Boyd <sboyd@codeaurora.org>
parent d5255ec3
......@@ -1998,7 +1998,7 @@ static int clk_dump(struct seq_file *s, void *data)
clk_prepare_unlock();
seq_printf(s, "}");
seq_puts(s, "}\n");
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment