From patchwork Thu Nov 16 16:25:46 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Joe Perches X-Patchwork-Id: 10061453 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id 0DDD1601AE for ; Thu, 16 Nov 2017 16:26:14 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 012D328EE5 for ; Thu, 16 Nov 2017 16:26:14 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id E9CE72AB91; Thu, 16 Nov 2017 16:26:13 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=2.0 tests=BAYES_00, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 Received: from alsa0.perex.cz (alsa0.perex.cz [77.48.224.243]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 49CB428EE5 for ; Thu, 16 Nov 2017 16:26:13 +0000 (UTC) Received: from alsa0.perex.cz (localhost [127.0.0.1]) by alsa0.perex.cz (Postfix) with ESMTP id 1DB59267729; Thu, 16 Nov 2017 17:26:02 +0100 (CET) X-Original-To: alsa-devel@alsa-project.org Delivered-To: alsa-devel@alsa-project.org Received: by alsa0.perex.cz (Postfix, from userid 1000) id A07B626772D; Thu, 16 Nov 2017 17:26:00 +0100 (CET) Received: from smtprelay.hostedemail.com (smtprelay0067.hostedemail.com [216.40.44.67]) by alsa0.perex.cz (Postfix) with ESMTP id BAC69267729 for ; Thu, 16 Nov 2017 17:25:56 +0100 (CET) Received: from filter.hostedemail.com (clb03-v110.bra.tucows.net [216.40.38.60]) by smtprelay01.hostedemail.com (Postfix) with ESMTP id 3BCEE100E86C8; Thu, 16 Nov 2017 16:25:55 +0000 (UTC) X-Session-Marker: 6A6F6540706572636865732E636F6D X-HE-Tag: sea26_5077d1ccbac0d X-Filterd-Recvd-Size: 1778 Received: from joe-laptop.perches.com (unknown [47.151.150.235]) (Authenticated sender: joe@perches.com) by omf03.hostedemail.com (Postfix) with ESMTPA; Thu, 16 Nov 2017 16:25:52 +0000 (UTC) From: Joe Perches To: Timur Tabi , Nicolin Chen , Xiubo Li , Fabio Estevam Date: Thu, 16 Nov 2017 08:25:46 -0800 Message-Id: <370a4a8e3963eb4dc4c4e13defda5170eee72753.1510849466.git.joe@perches.com> X-Mailer: git-send-email 2.15.0 In-Reply-To: References: Cc: alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org, Takashi Iwai , Liam Girdwood , Mark Brown , linuxppc-dev@lists.ozlabs.org Subject: [alsa-devel] [PATCH 1/2] ASoC: fsl_asrc: Fix line continuation format X-BeenThere: alsa-devel@alsa-project.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Alsa-devel mailing list for ALSA developers - http://www.alsa-project.org" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org X-Virus-Scanned: ClamAV using ClamSMTP 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; }