diff options
author | Luca Ceresoli <luca.ceresoli@bootlin.com> | 2023-01-26 16:24:12 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-01-28 11:50:34 +0100 |
commit | 18e16350558ac42c8cc55c5df714fd28412452ad (patch) | |
tree | 673a46dc8c5589200db5e4919d1b9989a1dd5349 /sound/soc/fsl | |
parent | ASoC: SOF: ipc4: Multi-stream playback and capture support (diff) | |
download | linux-18e16350558ac42c8cc55c5df714fd28412452ad.tar.xz linux-18e16350558ac42c8cc55c5df714fd28412452ad.zip |
ASoC: fsl-asoc-card: constify fsl_asoc_card_dai
This is never modified and can be made const.
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Link: https://lore.kernel.org/r/20230126152412.959574-1-luca.ceresoli@bootlin.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/fsl')
-rw-r--r-- | sound/soc/fsl/fsl-asoc-card.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/fsl/fsl-asoc-card.c b/sound/soc/fsl/fsl-asoc-card.c index 5e4be6a40217..8099a829c304 100644 --- a/sound/soc/fsl/fsl-asoc-card.c +++ b/sound/soc/fsl/fsl-asoc-card.c @@ -297,7 +297,7 @@ SND_SOC_DAILINK_DEFS(hifi_be, DAILINK_COMP_ARRAY(COMP_EMPTY()), DAILINK_COMP_ARRAY(COMP_DUMMY())); -static struct snd_soc_dai_link fsl_asoc_card_dai[] = { +static const struct snd_soc_dai_link fsl_asoc_card_dai[] = { /* Default ASoC DAI Link*/ { .name = "HiFi", |