From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takashi Iwai Subject: Re: [PATCH] ALSA: usb-audio: constify snd_kcontrol_new structures Date: Wed, 12 Apr 2017 15:35:47 +0200 Message-ID: References: <1492002486-9021-1-git-send-email-bhumirks@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 mx2.suse.de (mx2.suse.de [195.135.220.15]) by alsa0.perex.cz (Postfix) with ESMTP id 503ED266F7B for ; Wed, 12 Apr 2017 15:35:48 +0200 (CEST) In-Reply-To: <1492002486-9021-1-git-send-email-bhumirks@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: Bhumika Goyal Cc: julia.lawall@lip6.fr, alsa-devel@alsa-project.org, clemens@ladisch.de, linux-kernel@vger.kernel.org List-Id: alsa-devel@alsa-project.org On Wed, 12 Apr 2017 15:08:06 +0200, Bhumika Goyal wrote: > > Declare snd_kcontrol_new strcutures as const as they are only passed as > an argument to the function snd_ctl_new1. This argument is of type const, > so snd_kcontrol_new structures having this property can be made const too. > Done using Coccinelle: > > @r disable optional_qualifier@ > identifier x; > position p; > @@ > static struct snd_kcontrol_new x@p={...}; > > @ok@ > identifier r.x; > position p; > @@ > snd_ctl_new1(&x@p,...) > > @bad@ > position p != {r.p,ok.p}; > identifier r.x; > @@ > x@p > > @depends on !bad disable optional_qualifier@ > identifier r.x; > @@ > +const > struct snd_kcontrol_new x; > > Signed-off-by: Bhumika Goyal Applied, thanks. Takashi