aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiam Girdwood <lrg@ti.com>2011-05-12 11:14:04 -0400
committerMark Brown <broonie@opensource.wolfsonmicro.com>2011-05-12 11:40:03 -0400
commit22de71ba03311cdc1063757c50a1488cb90a1fca (patch)
tree34535f85da7635e47382db923136766511ba4c3c
parent9e53d856af0db8acc8a1bc6a9e3298f6bbb8944b (diff)
ASoC: core - allow ASoC more flexible machine name
Allow ASoC machine drivers to register a driver name and a longname. This allows user space to determine the flavour of machine driver. Signed-off-by: Liam Girdwood <lrg@ti.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
-rw-r--r--include/sound/soc.h2
-rw-r--r--sound/soc/soc-core.c6
2 files changed, 6 insertions, 2 deletions
diff --git a/include/sound/soc.h b/include/sound/soc.h
index b27c7a2d3bb0..f1de3e0c75bc 100644
--- a/include/sound/soc.h
+++ b/include/sound/soc.h
@@ -702,6 +702,8 @@ struct snd_soc_aux_dev {
702/* SoC card */ 702/* SoC card */
703struct snd_soc_card { 703struct snd_soc_card {
704 const char *name; 704 const char *name;
705 const char *long_name;
706 const char *driver_name;
705 struct device *dev; 707 struct device *dev;
706 struct snd_card *snd_card; 708 struct snd_card *snd_card;
707 struct module *owner; 709 struct module *owner;
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c
index a477e218aa28..c1a4cf480c72 100644
--- a/sound/soc/soc-core.c
+++ b/sound/soc/soc-core.c
@@ -1926,9 +1926,11 @@ static void snd_soc_instantiate_card(struct snd_soc_card *card)
1926 card->num_dapm_routes); 1926 card->num_dapm_routes);
1927 1927
1928 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname), 1928 snprintf(card->snd_card->shortname, sizeof(card->snd_card->shortname),
1929 "%s", card->name);
1930 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1931 "%s", card->name); 1929 "%s", card->name);
1930 snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
1931 "%s", card->long_name ? card->long_name : card->name);
1932 snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
1933 "%s", card->driver_name);
1932 1934
1933 if (card->late_probe) { 1935 if (card->late_probe) {
1934 ret = card->late_probe(card); 1936 ret = card->late_probe(card);