Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752064AbdHQH7s (ORCPT ); Thu, 17 Aug 2017 03:59:48 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:51794 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750800AbdHQH7q (ORCPT ); Thu, 17 Aug 2017 03:59:46 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org A7B7960274 Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=bgoswami@codeaurora.org Date: Thu, 17 Aug 2017 00:59:29 -0700 From: Banajit Goswami To: Bhumika Goyal Cc: julia.lawall@lip6.fr, brian.austin@cirrus.com, Paul.Handrigan@cirrus.com, lgirdwood@gmail.com, broonie@kernel.org, perex@perex.cz, tiwai@suse.com, bardliao@realtek.com, chiou@realtek.com, timur@tabi.org, nicoleotsuka@gmail.com, Xiubo.Lee@gmail.com, fabio.estevam@nxp.com, yang.jie@linux.intel.com, peter.ujfalusi@ti.com, jarkko.nikula@bitmer.com, daniel@zonque.org, haojian.zhuang@gmail.com, robert.jarzmik@free.fr, plai@codeaurora.org, krzk@kernel.org, sbkim73@samsung.com, s.nawrocki@samsung.com, alsa-devel@alsa-project.org, patches@opensource.cirrus.com, linux-kernel@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org Subject: Re: [PATCH 07/11] ASoC: qcom: make snd_soc_platform_driver const Message-ID: <20170817075929.GA11689@codeaurora.org> References: <1502710730-18912-1-git-send-email-bhumirks@gmail.com> <1502710730-18912-8-git-send-email-bhumirks@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1502710730-18912-8-git-send-email-bhumirks@gmail.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 995 Lines: 31 On Mon, Aug 14, 2017 at 04:38:46AM -0700, Bhumika Goyal wrote: > Make this const as it is only passed as the 2nd argument to the > function devm_snd_soc_register_platform, which is of type const. > Done using Coccinelle. > > Signed-off-by: Bhumika Goyal Acked-by: Banajit Goswami > --- > sound/soc/qcom/lpass-platform.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/sound/soc/qcom/lpass-platform.c > b/sound/soc/qcom/lpass-platform.c > index 7aabf08..fb3576a 100644 > --- a/sound/soc/qcom/lpass-platform.c > +++ b/sound/soc/qcom/lpass-platform.c > @@ -557,7 +557,7 @@ static void lpass_platform_pcm_free(struct snd_pcm > *pcm) > } > } > > -static struct snd_soc_platform_driver lpass_platform_driver = { > +static const struct snd_soc_platform_driver lpass_platform_driver = { > .pcm_new = lpass_platform_pcm_new, > .pcm_free = lpass_platform_pcm_free, > .ops = &lpass_platform_pcm_ops, > -- > 1.9.1 >