From mboxrd@z Thu Jan 1 00:00:00 1970 From: Clemens Ladisch Subject: Re: [PATCH] ALSA: oxygen: Xonar DG(X): make model_xonar_dg const Date: Thu, 14 Sep 2017 20:29:56 +0200 Message-ID: <61be1ca9-be7c-763d-d7cd-16b2e434a0f9@ladisch.de> References: <1505397855-10618-1-git-send-email-bhumirks@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from webclient5.webclient5.de (webclient5.webclient5.de [136.243.32.179]) by alsa0.perex.cz (Postfix) with ESMTP id C559B266986 for ; Thu, 14 Sep 2017 20:31:05 +0200 (CEST) In-Reply-To: <1505397855-10618-1-git-send-email-bhumirks@gmail.com> Content-Language: en-US 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: tiwai@suse.com Cc: alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org, Bhumika Goyal List-Id: alsa-devel@alsa-project.org Bhumika Goyal wrote: > Make this const as it not modified anywhere. It is only used during a > copy operation. Also, add const to the declaration in header. > > Signed-off-by: Bhumika Goyal Acked-by: Clemens Ladisch > --- > sound/pci/oxygen/xonar_dg.h | 2 +- > sound/pci/oxygen/xonar_dg_mixer.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/sound/pci/oxygen/xonar_dg.h b/sound/pci/oxygen/xonar_dg.h > index d461df3..5a07cda 100644 > --- a/sound/pci/oxygen/xonar_dg.h > +++ b/sound/pci/oxygen/xonar_dg.h > @@ -51,6 +51,6 @@ void dump_cs4245_registers(struct oxygen *chip, > void dg_resume(struct oxygen *chip); > void dg_cleanup(struct oxygen *chip); > > -extern struct oxygen_model model_xonar_dg; > +extern const struct oxygen_model model_xonar_dg; > > #endif > diff --git a/sound/pci/oxygen/xonar_dg_mixer.c b/sound/pci/oxygen/xonar_dg_mixer.c > index b885dac..d22fbe8 100644 > --- a/sound/pci/oxygen/xonar_dg_mixer.c > +++ b/sound/pci/oxygen/xonar_dg_mixer.c > @@ -449,7 +449,7 @@ static int dg_mixer_init(struct oxygen *chip) > return 0; > } > > -struct oxygen_model model_xonar_dg = { > +const struct oxygen_model model_xonar_dg = { > .longname = "C-Media Oxygen HD Audio", > .chip = "CMI8786", > .init = dg_init,