From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takashi Iwai Subject: Re: [PATCH] ALSA : pcsp: pcsp_lib: constify snd_pcsp_playback_ops Date: Fri, 09 Jun 2017 09:20:08 +0200 Message-ID: References: <0ef4f01bbb4cb6d9bea26845fbbcb087406f6798.1496988452.git.arvind.yadav.cs@gmail.com> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mx1.suse.de (mx2.suse.de [195.135.220.15]) by alsa0.perex.cz (Postfix) with ESMTP id 62326266CB8 for ; Fri, 9 Jun 2017 09:20:09 +0200 (CEST) In-Reply-To: <0ef4f01bbb4cb6d9bea26845fbbcb087406f6798.1496988452.git.arvind.yadav.cs@gmail.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: alsa-devel-bounces@alsa-project.org Sender: alsa-devel-bounces@alsa-project.org To: Arvind Yadav Cc: alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org List-Id: alsa-devel@alsa-project.org On Fri, 09 Jun 2017 08:09:56 +0200, Arvind Yadav wrote: > > File size before: > text data bss dec hex filename > 2027 168 1 2196 894 sound/drivers/pcsp/pcsp_lib.o > > File size After: > text data bss dec hex filename > 2155 40 1 2196 894 sound/drivers/pcsp/pcsp_lib.o > > Signed-off-by: Arvind Yadav Applied, thanks. Takashi > --- > sound/drivers/pcsp/pcsp_lib.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/sound/drivers/pcsp/pcsp_lib.c b/sound/drivers/pcsp/pcsp_lib.c > index aca2d7d..44b3632 100644 > --- a/sound/drivers/pcsp/pcsp_lib.c > +++ b/sound/drivers/pcsp/pcsp_lib.c > @@ -323,7 +323,7 @@ static int snd_pcsp_playback_open(struct snd_pcm_substream *substream) > return 0; > } > > -static struct snd_pcm_ops snd_pcsp_playback_ops = { > +static const struct snd_pcm_ops snd_pcsp_playback_ops = { > .open = snd_pcsp_playback_open, > .close = snd_pcsp_playback_close, > .ioctl = snd_pcm_lib_ioctl, > -- > 1.9.1 > >