summaryrefslogtreecommitdiffstats
path: root/sound/soc/meson/axg-tdmin.c
diff options
context:
space:
mode:
authorPierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>2021-03-26 22:59:15 +0100
committerMark Brown <broonie@kernel.org>2021-03-31 19:03:17 +0200
commit84d0493f67b856e5909c18e15b7ce78391565057 (patch)
treed497b1a04146d8ae49b7cae0388d10b133edcae3 /sound/soc/meson/axg-tdmin.c
parentASoC: bcm: cygnus_ssp: remove useless initialization (diff)
downloadlinux-84d0493f67b856e5909c18e15b7ce78391565057.tar.xz
linux-84d0493f67b856e5909c18e15b7ce78391565057.zip
ASoC: meson: axg-tdmin: remove useless assignment
cppcheck complains about potential null pointer dereference but it's rather an unnecessary assignment to NULL before walking through a list. Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20210326215927.936377-6-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/meson/axg-tdmin.c')
-rw-r--r--sound/soc/meson/axg-tdmin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/soc/meson/axg-tdmin.c b/sound/soc/meson/axg-tdmin.c
index b4faf9d5c1aa..49b613a1faf2 100644
--- a/sound/soc/meson/axg-tdmin.c
+++ b/sound/soc/meson/axg-tdmin.c
@@ -57,7 +57,7 @@ static const struct snd_kcontrol_new axg_tdmin_in_mux =
static struct snd_soc_dai *
axg_tdmin_get_be(struct snd_soc_dapm_widget *w)
{
- struct snd_soc_dapm_path *p = NULL;
+ struct snd_soc_dapm_path *p;
struct snd_soc_dai *be;
snd_soc_dapm_widget_for_each_source_path(w, p) {