Skip to content

Commit

Permalink
ASoC: ux500: mop500: Fix some refcounted resources issues
Browse files Browse the repository at this point in the history
There are 2 issues here:
   - if one of the 'of_parse_phandle' fails, calling 'mop500_of_node_put()'
     is a no-op because the 'mop500_dai_links' structure has not been
     initialized yet, so the referenced are not decremented
   - The reference stored in 'mop500_dai_links[i].codecs' is refcounted
     only once in the probe and must be decremented only once.

Fixes: 39013bd ("ASoC: Ux500: Dispose of device nodes correctly")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Link: https://lore.kernel.org/r/20200512100705.246349-1-christophe.jaillet@wanadoo.fr
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
tititiou36 authored and broonie committed May 12, 2020
1 parent 936b9df commit 4e8748f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions sound/soc/ux500/mop500.c
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,11 @@ static void mop500_of_node_put(void)
{
int i;

for (i = 0; i < 2; i++) {
for (i = 0; i < 2; i++)
of_node_put(mop500_dai_links[i].cpus->of_node);
of_node_put(mop500_dai_links[i].codecs->of_node);
}

/* Both links use the same codec, which is refcounted only once */
of_node_put(mop500_dai_links[0].codecs->of_node);
}

static int mop500_of_probe(struct platform_device *pdev,
Expand All @@ -81,7 +82,9 @@ static int mop500_of_probe(struct platform_device *pdev,

if (!(msp_np[0] && msp_np[1] && codec_np)) {
dev_err(&pdev->dev, "Phandle missing or invalid\n");
mop500_of_node_put();
for (i = 0; i < 2; i++)
of_node_put(msp_np[i]);
of_node_put(codec_np);
return -EINVAL;
}

Expand Down

0 comments on commit 4e8748f

Please sign in to comment.