summaryrefslogtreecommitdiff
path: root/sound/soc/generic/audio-graph-card2.c
diff options
context:
space:
mode:
authorMark Brown <broonie@kernel.org>2023-10-23 19:56:55 +0300
committerMark Brown <broonie@kernel.org>2023-10-23 19:56:55 +0300
commit61f85372d293241f4139731c14cab9ac8e9436fb (patch)
tree5664210648c855179e82cefe7363d61b4d376285 /sound/soc/generic/audio-graph-card2.c
parent145d7e5ae8f4e553478232fe3095379b60fa5496 (diff)
parent7242265213893e053457240f833d06ecd75b7ab3 (diff)
downloadlinux-61f85372d293241f4139731c14cab9ac8e9436fb.tar.xz
ASoc: Another series to convert to struct
Merge series from Uwe Kleine-König <u.kleine-koenig@pengutronix.de>: This is another series to convert ASoC drivers to use struct platform_driver:remove_new(). The rockchip one was already send before but with a wrong subject prefix, the cs42l43 driver is newer than the last series. The remaining five patches are for driver combos that my coccinelle patch failed to detect before.
Diffstat (limited to 'sound/soc/generic/audio-graph-card2.c')
-rw-r--r--sound/soc/generic/audio-graph-card2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/generic/audio-graph-card2.c b/sound/soc/generic/audio-graph-card2.c
index 1344e1adfc67..7146611df730 100644
--- a/sound/soc/generic/audio-graph-card2.c
+++ b/sound/soc/generic/audio-graph-card2.c
@@ -1224,7 +1224,7 @@ static struct platform_driver graph_card = {
.of_match_table = graph_of_match,
},
.probe = graph_probe,
- .remove = simple_util_remove,
+ .remove_new = simple_util_remove,
};
module_platform_driver(graph_card);