diff options
author | Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> | 2024-06-17 14:57:35 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2024-06-17 18:29:02 +0100 |
commit | 595265c92668cbdbd9f299c49907734d468c12e9 (patch) | |
tree | aa4b15db506ff3353993c7e1c5e8c5737d2e28d5 /sound/soc/codecs/idt821034.c | |
parent | d4a7d067e061c95c6387cf537258082074a4d299 (diff) |
ASoC: Constify DAI ops auto_selectable_formats
The static arrays passed as 'auto_selectable_formats' are not modified
by the drivers nor by the core code, so make it const for code safety.
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Acked-by: Herve Codina <herve.codina@bootlin.com>
Link: https://msgid.link/r/20240617125735.582963-2-krzysztof.kozlowski@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/codecs/idt821034.c')
-rw-r--r-- | sound/soc/codecs/idt821034.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/codecs/idt821034.c b/sound/soc/codecs/idt821034.c index 2cc7b9166e69..cb7a68c799f8 100644 --- a/sound/soc/codecs/idt821034.c +++ b/sound/soc/codecs/idt821034.c @@ -860,7 +860,7 @@ static int idt821034_dai_startup(struct snd_pcm_substream *substream, return 0; } -static u64 idt821034_dai_formats[] = { +static const u64 idt821034_dai_formats[] = { SND_SOC_POSSIBLE_DAIFMT_DSP_A | SND_SOC_POSSIBLE_DAIFMT_DSP_B, }; |