]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ASoC: Constify of_phandle_args in snd_soc_dai_driver
authorKrzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Mon, 17 Jun 2024 13:03:19 +0000 (15:03 +0200)
committerMark Brown <broonie@kernel.org>
Tue, 18 Jun 2024 13:19:52 +0000 (14:19 +0100)
ASoC core code does not modify contents of 'of_phandle_args' in 'struct
snd_soc_dai_driver', 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 <krzysztof.kozlowski@linaro.org>
Link: https://msgid.link/r/20240617-n-asoc-const-auto-selectable-formats-v1-1-8004f346ee38@linaro.org
Signed-off-by: Mark Brown <broonie@kernel.org>
include/sound/soc-dai.h

index 15ef268c98450a87fbed690b44263bb6d9e48f79..e6c61c79c4839bac18e496ae23e55769acdd90fd 100644 (file)
@@ -413,7 +413,7 @@ struct snd_soc_dai_driver {
        unsigned int id;
        unsigned int base;
        struct snd_soc_dobj dobj;
-       struct of_phandle_args *dai_args;
+       const struct of_phandle_args *dai_args;
 
        /* ops */
        const struct snd_soc_dai_ops *ops;