From: Krzysztof Kozlowski Date: Mon, 17 Jun 2024 13:03:20 +0000 (+0200) Subject: ASoC: Constify of_phandle_args in snd_soc_dai_link_component X-Git-Tag: v6.11-rc1~108^2~6^2~82^2~3 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=020b37d06f97de289940805bc821190d5858eda0;p=thirdparty%2Fkernel%2Flinux.git ASoC: Constify of_phandle_args in snd_soc_dai_link_component ASoC core code does not modify contents of 'of_phandle_args' in 'struct snd_soc_dai_link_component', so the pointer can be made as a pointer to const. This makes code safer, serves as clear annotation of core's intentions and allows putting pointed structures in rodata (if ever applicable). Signed-off-by: Krzysztof Kozlowski Link: https://msgid.link/r/20240617-n-asoc-const-auto-selectable-formats-v1-2-8004f346ee38@linaro.org Signed-off-by: Mark Brown --- diff --git a/include/sound/soc.h b/include/sound/soc.h index 33671437ee896..f02a51694ab47 100644 --- a/include/sound/soc.h +++ b/include/sound/soc.h @@ -675,7 +675,7 @@ struct snd_soc_dai_link_component { const char *name; struct device_node *of_node; const char *dai_name; - struct of_phandle_args *dai_args; + const struct of_phandle_args *dai_args; }; /*