diff options
author | Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> | 2016-10-28 03:38:28 +0000 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2016-10-28 19:24:48 +0100 |
commit | 6c1c06cb776cf9a34ceafc5be288aa3670aa3ef2 (patch) | |
tree | 77bc7d8191591eb3998ea407cb2f7126a18e18a2 /sound/soc/generic | |
parent | 193599264f3eb632f43f83f738b17241f91dbd5a (diff) |
ASoC: simple-card-utils: remove unnecessary cpu/codec pointer check
Remove cpu/codec pointer check from asoc_simple_card_canonicalize_dailink()
This is verbose check, and will be issue if CPU name was created by
fmt_single_name() on simple-scu-card.c.
see also asoc_simple_card_canonicalize_cpu()
Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/generic')
-rw-r--r-- | sound/soc/generic/simple-card-utils.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/sound/soc/generic/simple-card-utils.c b/sound/soc/generic/simple-card-utils.c index 1cb39309f5d5..e5b80f53093a 100644 --- a/sound/soc/generic/simple-card-utils.c +++ b/sound/soc/generic/simple-card-utils.c @@ -195,9 +195,6 @@ EXPORT_SYMBOL_GPL(asoc_simple_card_init_dai); int asoc_simple_card_canonicalize_dailink(struct snd_soc_dai_link *dai_link) { - if (!dai_link->cpu_dai_name || !dai_link->codec_dai_name) - return -EINVAL; - /* Assumes platform == cpu */ if (!dai_link->platform_of_node) dai_link->platform_of_node = dai_link->cpu_of_node; |