Commit 80c48e72 authored by Jingoo Han's avatar Jingoo Han Committed by Mark Brown

regulator: dbx500: use seq_puts() instead of seq_printf()

For a constant format without additional arguments, use seq_puts()
instead of seq_printf(). Also, it fixes the following checkpatch
warning.

  WARNING: Prefer seq_puts to seq_printf
Signed-off-by: default avatarJingoo Han <jg1.han@samsung.com>
Signed-off-by: default avatarMark Brown <broonie@linaro.org>
parent e77addc5
...@@ -129,9 +129,9 @@ static int ux500_regulator_status_print(struct seq_file *s, void *p) ...@@ -129,9 +129,9 @@ static int ux500_regulator_status_print(struct seq_file *s, void *p)
int i; int i;
/* print dump header */ /* print dump header */
err = seq_printf(s, "ux500-regulator status:\n"); err = seq_puts(s, "ux500-regulator status:\n");
if (err < 0) if (err < 0)
dev_err(dev, "seq_printf overflow\n"); dev_err(dev, "seq_puts overflow\n");
err = seq_printf(s, "%31s : %8s : %8s\n", "current", err = seq_printf(s, "%31s : %8s : %8s\n", "current",
"before", "after"); "before", "after");
......
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