diff options
author | Julia Lawall <Julia.Lawall@inria.fr> | 2021-02-13 11:19:07 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2021-03-10 13:07:08 +0000 |
commit | eb0d22d793e82c126ce922fda387c29fe26a2bff (patch) | |
tree | adb1063fe97ea35e1fe859d63814ed3328a549b7 /sound/soc/fsl/fsl_micfil.c | |
parent | 36785fec16bed809f622bd523c4cabdfefa9e836 (diff) | |
download | linux-eb0d22d793e82c126ce922fda387c29fe26a2bff.tar.gz linux-eb0d22d793e82c126ce922fda387c29fe26a2bff.tar.bz2 linux-eb0d22d793e82c126ce922fda387c29fe26a2bff.zip |
ASoC: fsl: drop unneeded snd_soc_dai_set_drvdata
snd_soc_dai_set_drvdata is not needed when the set data comes from
snd_soc_dai_get_drvdata or dev_get_drvdata. The problem was fixed
usingthe following semantic patch: (http://coccinelle.lip6.fr/)
// <smpl>
@@
expression x,y,e;
@@
x = dev_get_drvdata(y->dev)
... when != x = e
- snd_soc_dai_set_drvdata(y,x);
@@
expression x,y,e;
@@
x = snd_soc_dai_get_drvdata(y)
... when != x = e
- snd_soc_dai_set_drvdata(y,x);
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Acked-by: Nicolin Chen <nicoleotsuka@gmail.com>
Link: https://lore.kernel.org/r/20210213101907.1318496-5-Julia.Lawall@inria.fr
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/fsl/fsl_micfil.c')
-rw-r--r-- | sound/soc/fsl/fsl_micfil.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sound/soc/fsl/fsl_micfil.c b/sound/soc/fsl/fsl_micfil.c index 5935af2e5ff4..2b9edd4bb94d 100644 --- a/sound/soc/fsl/fsl_micfil.c +++ b/sound/soc/fsl/fsl_micfil.c @@ -423,8 +423,6 @@ static int fsl_micfil_dai_probe(struct snd_soc_dai *cpu_dai) return ret; } - snd_soc_dai_set_drvdata(cpu_dai, micfil); - return 0; } |