From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtprelay0034.hostedemail.com ([216.40.44.34]:42592 "EHLO smtprelay.hostedemail.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1751827AbdJFJcZ (ORCPT ); Fri, 6 Oct 2017 05:32:25 -0400 Message-ID: <1507282342.4434.60.camel@perches.com> Subject: Re: [PATCH 3.18 14/35] pinctrl: mvebu: Use seq_puts() in mvebu_pinconf_group_dbg_show() From: Joe Perches To: Greg Kroah-Hartman , linux-kernel@vger.kernel.org Cc: stable@vger.kernel.org, Markus Elfring , Linus Walleij , Sasha Levin Date: Fri, 06 Oct 2017 02:32:22 -0700 In-Reply-To: <20171006092403.375551386@linuxfoundation.org> References: <20171006092402.810400570@linuxfoundation.org> <20171006092403.375551386@linuxfoundation.org> Content-Type: text/plain; charset="ISO-8859-1" Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: stable-owner@vger.kernel.org List-ID: On Fri, 2017-10-06 at 11:24 +0200, Greg Kroah-Hartman wrote: > 3.18-stable review patch. If anyone has any objections, please let me know. Same deal, trivial cpu savings only, no place in stable unless another patch depends on this one. > ------------------ > > From: Markus Elfring > > > [ Upstream commit 420dc61642920849d824a0de2aa853db59f5244f ] > > Strings which did not contain data format specifications should be put > into a sequence. Thus use the corresponding function "seq_puts". > > This issue was detected by using the Coccinelle software. > > Signed-off-by: Markus Elfring > Signed-off-by: Linus Walleij > Signed-off-by: Sasha Levin > Signed-off-by: Greg Kroah-Hartman > --- > drivers/pinctrl/mvebu/pinctrl-mvebu.c | 9 +++++---- > 1 file changed, 5 insertions(+), 4 deletions(-) > > --- a/drivers/pinctrl/mvebu/pinctrl-mvebu.c > +++ b/drivers/pinctrl/mvebu/pinctrl-mvebu.c > @@ -195,11 +195,12 @@ static void mvebu_pinconf_group_dbg_show > seq_printf(s, "o"); > seq_printf(s, ")"); > } > - } else > - seq_printf(s, "current: UNKNOWN"); > + } else { > + seq_puts(s, "current: UNKNOWN"); > + } > > if (grp->num_settings > 1) { > - seq_printf(s, ", available = ["); > + seq_puts(s, ", available = ["); > for (n = 0; n < grp->num_settings; n++) { > if (curr == &grp->settings[n]) > continue; > @@ -222,7 +223,7 @@ static void mvebu_pinconf_group_dbg_show > seq_printf(s, ")"); > } > } > - seq_printf(s, " ]"); > + seq_puts(s, " ]"); > } > return; > } > >