]> git.hungrycats.org Git - linux/commit
media: i2c: tda1997x: constify snd_soc_component_driver struct
authorJavier Carrasco <javier.carrasco.cruz@gmail.com>
Mon, 29 Jul 2024 09:37:37 +0000 (11:37 +0200)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Fri, 9 Aug 2024 05:56:38 +0000 (07:56 +0200)
commit447b7fdba9e9497f27b845ec069300c91ed5d625
treeefa7c8046db115c52b0dadaa955fd147c3537294
parentc8ad75010c5bafe014860f33fc73a887ab561209
media: i2c: tda1997x: constify snd_soc_component_driver struct

`tda1997x_codec_driver` is not modified after its declaration, and it
is only passed to `devm_snd_soc_register_component()`, which expects
a constant `snd_soc_component_driver`.

Move `tda1997x_codec_driver` to a read-only section by declaring it
const.

Signed-off-by: Javier Carrasco <javier.carrasco.cruz@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/i2c/tda1997x.c