Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754030AbdHWMJv (ORCPT ); Wed, 23 Aug 2017 08:09:51 -0400 Received: from mail-pg0-f67.google.com ([74.125.83.67]:38789 "EHLO mail-pg0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753593AbdHWMJs (ORCPT ); Wed, 23 Aug 2017 08:09:48 -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 1/4] ALSA: aaci: constify ac97_pcm structures Date: Wed, 23 Aug 2017 17:39:25 +0530 Message-Id: <1503490168-26501-2-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: 668 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/arm/aaci.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sound/arm/aaci.c b/sound/arm/aaci.c index e93b327..7780d32 100644 --- a/sound/arm/aaci.c +++ b/sound/arm/aaci.c @@ -786,7 +786,7 @@ static int aaci_resume(struct device *dev) #endif -static struct ac97_pcm ac97_defs[] = { +static const struct ac97_pcm ac97_defs[] = { [0] = { /* Front PCM */ .exclusive = 1, .r = { -- 1.9.1