summaryrefslogtreecommitdiff
path: root/sound/soc/generic/simple-card-utils.c
diff options
context:
space:
mode:
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>2018-08-31 03:09:47 +0000
committerMark Brown <broonie@kernel.org>2018-08-31 15:58:35 +0100
commit2967e5ea19ec041104fd43da4cb07e8e76a39e55 (patch)
treef25e27a672efaa5888cc444fd4c509e62ebf7c3c /sound/soc/generic/simple-card-utils.c
parent04f7267aa8d17773917580951c740496e8059cba (diff)
ASoC: simple-card-util: remove dai_link compatible code for codec
Now no simple/audio cards are using legacy dai_link style for codec. Let's remove compatible code. Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/generic/simple-card-utils.c')
-rw-r--r--sound/soc/generic/simple-card-utils.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/soc/generic/simple-card-utils.c b/sound/soc/generic/simple-card-utils.c
index 73c0a904f32e..e7057be957e1 100644
--- a/sound/soc/generic/simple-card-utils.c
+++ b/sound/soc/generic/simple-card-utils.c
@@ -409,9 +409,7 @@ int asoc_simple_card_clean_reference(struct snd_soc_card *card)
num_links < card->num_links;
num_links++, dai_link++) {
of_node_put(dai_link->cpu_of_node);
- of_node_put(dai_link->codec_of_node);
- if (dai_link->codecs)
- of_node_put(dai_link->codecs->of_node);
+ of_node_put(dai_link->codecs->of_node);
}
return 0;
}