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: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
        int i;
 
        /* print dump header */
-       err = seq_printf(s, "ux500-regulator status:\n");
+       err = seq_puts(s, "ux500-regulator status:\n");
        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",
                "before", "after");