From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pf0-x241.google.com (mail-pf0-x241.google.com [IPv6:2607:f8b0:400e:c00::241]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 3yd9b36bBBzDr8x for ; Fri, 17 Nov 2017 06:01:51 +1100 (AEDT) Received: by mail-pf0-x241.google.com with SMTP id a84so34548pfl.0 for ; Thu, 16 Nov 2017 11:01:51 -0800 (PST) Date: Thu, 16 Nov 2017 11:01:59 -0800 From: Nicolin Chen To: Joe Perches Cc: Timur Tabi , Xiubo Li , Fabio Estevam , Liam Girdwood , Mark Brown , Jaroslav Kysela , Takashi Iwai , alsa-devel@alsa-project.org, linuxppc-dev@lists.ozlabs.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/2] ASoC: fsl_asrc: Fix line continuation format Message-ID: <20171116190158.GA11301@Asurada-Nvidia> References: <370a4a8e3963eb4dc4c4e13defda5170eee72753.1510849466.git.joe@perches.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <370a4a8e3963eb4dc4c4e13defda5170eee72753.1510849466.git.joe@perches.com> List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Thu, Nov 16, 2017 at 08:25:46AM -0800, Joe Perches wrote: > Line continuations with excess spacing causes unexpected output > > Signed-off-by: Joe Perches Acked-by: Nicolin Chen > --- > sound/soc/fsl/fsl_asrc.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/sound/soc/fsl/fsl_asrc.c b/sound/soc/fsl/fsl_asrc.c > index 806d39927318..ed683fe8b94a 100644 > --- a/sound/soc/fsl/fsl_asrc.c > +++ b/sound/soc/fsl/fsl_asrc.c > @@ -288,8 +288,8 @@ static int fsl_asrc_config_pair(struct fsl_asrc_pair *pair) > > if ((outrate > 8000 && outrate < 30000) && > (outrate/inrate > 24 || inrate/outrate > 8)) { > - pair_err("exceed supported ratio range [1/24, 8] for \ > - inrate/outrate: %d/%d\n", inrate, outrate); > + pair_err("exceed supported ratio range [1/24, 8] for inrate/outrate: %d/%d\n", > + inrate, outrate); > return -EINVAL; > } > > -- > 2.15.0 >