From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 20732C43460 for ; Sun, 2 May 2021 13:46:29 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id F2DBB61176 for ; Sun, 2 May 2021 13:46:28 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232002AbhEBNrT convert rfc822-to-8bit (ORCPT ); Sun, 2 May 2021 09:47:19 -0400 Received: from aposti.net ([89.234.176.197]:47286 "EHLO aposti.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231941AbhEBNrR (ORCPT ); Sun, 2 May 2021 09:47:17 -0400 Date: Sun, 02 May 2021 14:45:43 +0100 From: Paul Cercueil Subject: Re: [PATCH] ASoC: jz4740-i2s: fix function name To: "H. Nikolaus Schaller" Cc: Liam Girdwood , Mark Brown , Jaroslav Kysela , Takashi Iwai , linux-mips@vger.kernel.org, alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org, letux-kernel@openphoenux.org Message-Id: <7KFHSQ.0D5Z90AZRGJV@crapouillou.net> In-Reply-To: <56f9c8518870263698b00d10de4821d2dc8932be.1619960935.git.hns@goldelico.com> References: <56f9c8518870263698b00d10de4821d2dc8932be.1619960935.git.hns@goldelico.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1; format=flowed Content-Transfer-Encoding: 8BIT Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Le dim., mai 2 2021 at 15:08:55 +0200, H. Nikolaus Schaller a écrit : > This driver is not related to I2C protocol. > > s/_i2c_/_i2s_/ > > Signed-off-by: H. Nikolaus Schaller Acked-by: Paul Cercueil Cheers, -Paul > --- > sound/soc/jz4740/jz4740-i2s.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/sound/soc/jz4740/jz4740-i2s.c > b/sound/soc/jz4740/jz4740-i2s.c > index 47d955c0bb6a1..fe5b3a2b239c6 100644 > --- a/sound/soc/jz4740/jz4740-i2s.c > +++ b/sound/soc/jz4740/jz4740-i2s.c > @@ -372,7 +372,7 @@ static int jz4740_i2s_resume(struct > snd_soc_component *component) > return 0; > } > > -static void jz4740_i2c_init_pcm_config(struct jz4740_i2s *i2s) > +static void jz4740_i2s_init_pcm_config(struct jz4740_i2s *i2s) > { > struct snd_dmaengine_dai_dma_data *dma_data; > > @@ -397,7 +397,7 @@ static int jz4740_i2s_dai_probe(struct > snd_soc_dai *dai) > if (ret) > return ret; > > - jz4740_i2c_init_pcm_config(i2s); > + jz4740_i2s_init_pcm_config(i2s); > snd_soc_dai_init_dma_data(dai, &i2s->playback_dma_data, > &i2s->capture_dma_data); > > -- > 2.26.2 >