Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754108AbdHWMJ5 (ORCPT ); Wed, 23 Aug 2017 08:09:57 -0400 Received: from mail-pg0-f66.google.com ([74.125.83.66]:35206 "EHLO mail-pg0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754060AbdHWMJy (ORCPT ); Wed, 23 Aug 2017 08:09:54 -0400 From: Arvind Yadav To: linux@armlinux.org.uk, perex@perex.cz, tiwai@suse.com Cc: linux-kernel@vger.kernel.org, alsa-devel@alsa-project.org Subject: [PATCH 3/4] ALSA: atiixp: constify ac97_pcm structures Date: Wed, 23 Aug 2017 17:39:27 +0530 Message-Id: <1503490168-26501-4-git-send-email-arvind.yadav.cs@gmail.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1503490168-26501-1-git-send-email-arvind.yadav.cs@gmail.com> References: <1503490168-26501-1-git-send-email-arvind.yadav.cs@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 737 Lines: 24 ac97_pcm are not supposed to change at runtime. All functions working with ac97_pcm provided by work with const ac97_pcm. So mark the non-const structs as const. Signed-off-by: Arvind Yadav --- sound/pci/atiixp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/pci/atiixp.c b/sound/pci/atiixp.c index a40c918..fa70804 100644 --- a/sound/pci/atiixp.c +++ b/sound/pci/atiixp.c @@ -1183,7 +1183,7 @@ static int snd_atiixp_spdif_close(struct snd_pcm_substream *substream) .pointer = snd_atiixp_pcm_pointer, }; -static struct ac97_pcm atiixp_pcm_defs[] = { +static const struct ac97_pcm atiixp_pcm_defs[] = { /* front PCM */ { .exclusive = 1, -- 1.9.1