From: Kuninori Morimoto Date: Tue, 20 Sep 2022 06:32:25 +0000 (+0000) Subject: ASoC: soc.h: use defined number instead of direct number X-Git-Tag: v6.1-rc1~158^2^2~47^2~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a26ec2acb2043a52c41d2b651b30d2df475f4263;p=thirdparty%2Fkernel%2Flinux.git ASoC: soc.h: use defined number instead of direct number snd_soc_pcm_runtime has dpcm for Playback/Capture, but it is defined directly "2". It should use defined number. struct snd_soc_pcm_runtime { ... => struct snd_soc_dpcm_runtime dpcm[2]; ... } This patch fixup it. Signed-off-by: Kuninori Morimoto Link: https://lore.kernel.org/r/87r106v9mv.wl-kuninori.morimoto.gx@renesas.com Signed-off-by: Mark Brown --- diff --git a/include/sound/soc.h b/include/sound/soc.h index f5e0c402acb7a..4adb6236860c6 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -1062,7 +1062,7 @@ struct snd_soc_pcm_runtime { unsigned int params_select; /* currently selected param for dai link */ /* Dynamic PCM BE runtime data */ - struct snd_soc_dpcm_runtime dpcm[2]; + struct snd_soc_dpcm_runtime dpcm[SNDRV_PCM_STREAM_LAST + 1]; long pmdown_time;