ASoC: simple-card: card name can be option
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Mon, 10 Mar 2014 02:37:56 +0000 (19:37 -0700)
committerStephane Desneux <stephane.desneux@open.eurogiciel.org>
Wed, 4 Feb 2015 10:13:32 +0000 (11:13 +0100)
snd_card.name is now option on DT case.
non-DT case can follow same style,
and it is understandable from platform point of view.

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
(cherry picked from commit 12ffa6fc1958879a81b6af1624c1a2edd83ec04a)
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
sound/soc/generic/simple-card.c

index 7cabcc5..5dd4769 100644 (file)
@@ -287,7 +287,6 @@ static int asoc_simple_card_probe(struct platform_device *pdev)
                }
 
                if (!cinfo->name        ||
-                   !cinfo->card        ||
                    !cinfo->codec_dai.name      ||
                    !cinfo->codec       ||
                    !cinfo->platform    ||
@@ -296,7 +295,7 @@ static int asoc_simple_card_probe(struct platform_device *pdev)
                        return -EINVAL;
                }
 
-               priv->snd_card.name     = cinfo->card;
+               priv->snd_card.name     = (cinfo->card) ? cinfo->card : cinfo->name;
                dai_link->name          = cinfo->name;
                dai_link->stream_name   = cinfo->name;
                dai_link->platform_name = cinfo->platform;