Merge branch 'topic/asoc' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
authorMark Brown <broonie@opensource.wolfsonmicro.com>
Sun, 22 May 2011 02:31:51 +0000 (10:31 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Sun, 22 May 2011 02:31:51 +0000 (10:31 +0800)
sound/soc/codecs/spdif_transciever.c
sound/soc/soc-core.c
sound/soc/tegra/tegra_i2s.c

index 4c32b54913ad0f6316de3bea2f4e03a558fe8ec6..6a1a7e705cd767ffd11365252c88b70fe7c98ad1 100644 (file)
@@ -21,7 +21,7 @@
 #include <sound/pcm.h>
 #include <sound/initval.h>
 
-MODULE_LICENSE("GPL");
+#define DRV_NAME "spdif-dit"
 
 #define STUB_RATES     SNDRV_PCM_RATE_8000_96000
 #define STUB_FORMATS   SNDRV_PCM_FMTBIT_S16_LE
@@ -56,7 +56,7 @@ static struct platform_driver spdif_dit_driver = {
        .probe          = spdif_dit_probe,
        .remove         = spdif_dit_remove,
        .driver         = {
-               .name   = "spdif-dit",
+               .name   = DRV_NAME,
                .owner  = THIS_MODULE,
        },
 };
@@ -74,3 +74,7 @@ static void __exit dit_exit(void)
 module_init(dit_modinit);
 module_exit(dit_exit);
 
+MODULE_AUTHOR("Steve Chen <schen@mvista.com>");
+MODULE_DESCRIPTION("SPDIF dummy codec driver");
+MODULE_LICENSE("GPL");
+MODULE_ALIAS("platform:" DRV_NAME);
index 5968745213f8c5ee767613fa1b6c069e06380568..bb7cd58129459cbd9f0fb729ad61d4ed7070ee18 100644 (file)
@@ -1930,7 +1930,7 @@ static void snd_soc_instantiate_card(struct snd_soc_card *card)
        snprintf(card->snd_card->longname, sizeof(card->snd_card->longname),
                 "%s", card->long_name ? card->long_name : card->name);
        snprintf(card->snd_card->driver, sizeof(card->snd_card->driver),
-                "%s", card->driver_name);
+                "%s", card->driver_name ? card->driver_name : card->name);
 
        if (card->late_probe) {
                ret = card->late_probe(card);
index 4f5e2c90b0207ce0be0b39bf90a946d27b8ece2a..6b817e20548ca07fa94938caf8202bc37b9b0386 100644 (file)
@@ -114,7 +114,7 @@ static void tegra_i2s_debug_remove(struct tegra_i2s *i2s)
                debugfs_remove(i2s->debug);
 }
 #else
-static inline void tegra_i2s_debug_add(struct tegra_i2s *i2s)
+static inline void tegra_i2s_debug_add(struct tegra_i2s *i2s, int id)
 {
 }