diff options
author | Amadeusz Sławiński <[email protected]> | 2024-04-03 11:31:38 +0200 |
---|---|---|
committer | Mark Brown <[email protected]> | 2024-04-03 11:05:13 +0100 |
commit | a3c95efc432ddd18882cfab420cbea14937fb950 (patch) | |
tree | 77384adedb19713ecb06785d77d8cbb57527893c | |
parent | 68a71af3aee2b776a0030e1393864c9501997cbb (diff) |
ASoC: Intel: avs: hdaudio: Constify probing_link
probing_link is passed to devm_kmemdup, and is never modified, may as
well mark it const.
Reviewed-by: Cezary Rojewski <[email protected]>
Signed-off-by: Amadeusz Sławiński <[email protected]>
Link: https://msgid.link/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | sound/soc/intel/avs/boards/hdaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/intel/avs/boards/hdaudio.c b/sound/soc/intel/avs/boards/hdaudio.c index 2de703b909c3..4433175814f8 100644 --- a/sound/soc/intel/avs/boards/hdaudio.c +++ b/sound/soc/intel/avs/boards/hdaudio.c @@ -155,7 +155,7 @@ static int avs_probing_link_init(struct snd_soc_pcm_runtime *rtm) return 0; } -static struct snd_soc_dai_link probing_link = { +static const struct snd_soc_dai_link probing_link = { .name = "probing-LINK", .id = -1, .nonatomic = 1, |