diff options
author | Markus Elfring <elfring@users.sourceforge.net> | 2016-10-16 21:51:09 +0200 |
---|---|---|
committer | Hans-Christian Noren Egtvedt <egtvedt@samfundet.no> | 2016-12-12 09:05:46 +0100 |
commit | 65c0787ce09634aa5ca3b632c2dbf086722d28fe (patch) | |
tree | 0d563c7ad97ac848a810e65c36364ef2bfa73757 /arch/avr32/mach-at32ap | |
parent | 69973b830859bc6529a7a0468ba0d80ee5117826 (diff) | |
download | linux-65c0787ce09634aa5ca3b632c2dbf086722d28fe.tar.bz2 |
AVR32-clock: Use seq_putc() in two functions
A single character (line break) should be put into two sequences.
Thus use the corresponding function "seq_putc".
This issue was detected by using the Coccinelle software.
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Diffstat (limited to 'arch/avr32/mach-at32ap')
-rw-r--r-- | arch/avr32/mach-at32ap/clock.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/avr32/mach-at32ap/clock.c b/arch/avr32/mach-at32ap/clock.c index 52c179bec0cc..a912a72b12ff 100644 --- a/arch/avr32/mach-at32ap/clock.c +++ b/arch/avr32/mach-at32ap/clock.c @@ -242,7 +242,7 @@ dump_clock(struct clk *parent, struct clkinf *r) clk_get_rate(parent)); if (parent->dev) seq_printf(r->s, ", for %s", dev_name(parent->dev)); - seq_printf(r->s, "\n"); + seq_putc(r->s, '\n'); /* cost of this scan is small, but not linear... */ r->nest = nest + NEST_DELTA; @@ -276,8 +276,7 @@ static int clk_show(struct seq_file *s, void *unused) seq_printf(s, "GCCTRL%d = %8x\n", i, pm_readl(GCCTRL(i))); } - seq_printf(s, "\n"); - + seq_putc(s, '\n'); r.s = s; r.nest = 0; /* protected from changes on the list while dumping */ |