aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/samsung/smdk_wm9713.c
diff options
context:
space:
mode:
authorJonathan Herman <hermanjl@cs.unc.edu>2013-01-17 16:15:55 -0500
committerJonathan Herman <hermanjl@cs.unc.edu>2013-01-17 16:15:55 -0500
commit8dea78da5cee153b8af9c07a2745f6c55057fe12 (patch)
treea8f4d49d63b1ecc92f2fddceba0655b2472c5bd9 /sound/soc/samsung/smdk_wm9713.c
parent406089d01562f1e2bf9f089fd7637009ebaad589 (diff)
Patched in Tegra support.
Diffstat (limited to 'sound/soc/samsung/smdk_wm9713.c')
-rw-r--r--sound/soc/samsung/smdk_wm9713.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/sound/soc/samsung/smdk_wm9713.c b/sound/soc/samsung/smdk_wm9713.c
index 0d20e4ed27a..fffe3c1dd1b 100644
--- a/sound/soc/samsung/smdk_wm9713.c
+++ b/sound/soc/samsung/smdk_wm9713.c
@@ -2,7 +2,7 @@
2 * smdk_wm9713.c -- SoC audio for SMDK 2 * smdk_wm9713.c -- SoC audio for SMDK
3 * 3 *
4 * Copyright 2010 Samsung Electronics Co. Ltd. 4 * Copyright 2010 Samsung Electronics Co. Ltd.
5 * Author: Jaswinder Singh Brar <jassisinghbrar@gmail.com> 5 * Author: Jaswinder Singh Brar <jassi.brar@samsung.com>
6 * 6 *
7 * This program is free software; you can redistribute it and/or 7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as 8 * modify it under the terms of the GNU General Public License as
@@ -11,7 +11,6 @@
11 * 11 *
12 */ 12 */
13 13
14#include <linux/module.h>
15#include <sound/soc.h> 14#include <sound/soc.h>
16 15
17static struct snd_soc_card smdk; 16static struct snd_soc_card smdk;
@@ -42,7 +41,7 @@ static struct snd_soc_card smdk;
42static struct snd_soc_dai_link smdk_dai = { 41static struct snd_soc_dai_link smdk_dai = {
43 .name = "AC97", 42 .name = "AC97",
44 .stream_name = "AC97 PCM", 43 .stream_name = "AC97 PCM",
45 .platform_name = "samsung-ac97", 44 .platform_name = "samsung-audio",
46 .cpu_dai_name = "samsung-ac97", 45 .cpu_dai_name = "samsung-ac97",
47 .codec_dai_name = "wm9713-hifi", 46 .codec_dai_name = "wm9713-hifi",
48 .codec_name = "wm9713-codec", 47 .codec_name = "wm9713-codec",
@@ -50,7 +49,6 @@ static struct snd_soc_dai_link smdk_dai = {
50 49
51static struct snd_soc_card smdk = { 50static struct snd_soc_card smdk = {
52 .name = "SMDK WM9713", 51 .name = "SMDK WM9713",
53 .owner = THIS_MODULE,
54 .dai_link = &smdk_dai, 52 .dai_link = &smdk_dai,
55 .num_links = 1, 53 .num_links = 1,
56}; 54};
@@ -103,6 +101,6 @@ module_init(smdk_init);
103module_exit(smdk_exit); 101module_exit(smdk_exit);
104 102
105/* Module information */ 103/* Module information */
106MODULE_AUTHOR("Jaswinder Singh Brar, jassisinghbrar@gmail.com"); 104MODULE_AUTHOR("Jaswinder Singh Brar, jassi.brar@samsung.com");
107MODULE_DESCRIPTION("ALSA SoC SMDK+WM9713"); 105MODULE_DESCRIPTION("ALSA SoC SMDK+WM9713");
108MODULE_LICENSE("GPL"); 106MODULE_LICENSE("GPL");