[PATCH 1/2] pwm: Simplify data output in pwm_dbg_show()
Markus Elfring <[email protected]>
| Newsgroups | org.kernel.vger.kernel-janitors,org.kernel.vger.linux-kernel,org.kernel.vger.linux-pwm |
|---|---|
| Message-ID | <[email protected]> |
From: Markus Elfring <[email protected]> Date: Fri, 5 Jun 2026 15:57:58 +0200 Move the specification for a line break from a seq_puts() call to a seq_printf() call. The source code was transformed by using the Coccinelle software. Signed-off-by: Markus Elfring <[email protected]> --- drivers/pwm/core.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/drivers/pwm/core.c b/drivers/pwm/core.c index be4885da85b6..1138b3ffbc12 100644 --- a/drivers/pwm/core.c +++ b/drivers/pwm/core.c @@ -2647,9 +2647,7 @@ static void pwm_dbg_show(struct pwm_chip *chip, struct seq_file *s) if (test_bit(PWMF_REQUESTED, &pwm->flags)) seq_puts(s, " requested"); - seq_puts(s, "\n"); - - seq_printf(s, " requested configuration: %3sabled, %llu/%llu ns, %s polarity", + seq_printf(s, "\n requested configuration: %3sabled, %llu/%llu ns, %s polarity", state.enabled ? "en" : "dis", state.duty_cycle, state.period, state.polarity ? "inverse" : "normal"); if (state.usage_power) -- 2.54.0