diff options
Diffstat (limited to 'sound/soc/omap/igep0020.c')
-rw-r--r-- | sound/soc/omap/igep0020.c | 27 |
1 files changed, 8 insertions, 19 deletions
diff --git a/sound/soc/omap/igep0020.c b/sound/soc/omap/igep0020.c index 3583c429f9be..0ae34702995b 100644 --- a/sound/soc/omap/igep0020.c +++ b/sound/soc/omap/igep0020.c | |||
@@ -24,7 +24,6 @@ | |||
24 | #include <sound/core.h> | 24 | #include <sound/core.h> |
25 | #include <sound/pcm.h> | 25 | #include <sound/pcm.h> |
26 | #include <sound/soc.h> | 26 | #include <sound/soc.h> |
27 | #include <sound/soc-dapm.h> | ||
28 | 27 | ||
29 | #include <asm/mach-types.h> | 28 | #include <asm/mach-types.h> |
30 | #include <mach/hardware.h> | 29 | #include <mach/hardware.h> |
@@ -33,14 +32,13 @@ | |||
33 | 32 | ||
34 | #include "omap-mcbsp.h" | 33 | #include "omap-mcbsp.h" |
35 | #include "omap-pcm.h" | 34 | #include "omap-pcm.h" |
36 | #include "../codecs/twl4030.h" | ||
37 | 35 | ||
38 | static int igep2_hw_params(struct snd_pcm_substream *substream, | 36 | static int igep2_hw_params(struct snd_pcm_substream *substream, |
39 | struct snd_pcm_hw_params *params) | 37 | struct snd_pcm_hw_params *params) |
40 | { | 38 | { |
41 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 39 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
42 | struct snd_soc_dai *codec_dai = rtd->dai->codec_dai; | 40 | struct snd_soc_dai *codec_dai = rtd->codec_dai; |
43 | struct snd_soc_dai *cpu_dai = rtd->dai->cpu_dai; | 41 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
44 | int ret; | 42 | int ret; |
45 | 43 | ||
46 | /* Set codec DAI configuration */ | 44 | /* Set codec DAI configuration */ |
@@ -82,35 +80,28 @@ static struct snd_soc_ops igep2_ops = { | |||
82 | static struct snd_soc_dai_link igep2_dai = { | 80 | static struct snd_soc_dai_link igep2_dai = { |
83 | .name = "TWL4030", | 81 | .name = "TWL4030", |
84 | .stream_name = "TWL4030", | 82 | .stream_name = "TWL4030", |
85 | .cpu_dai = &omap_mcbsp_dai[0], | 83 | .cpu_dai_name = "omap-mcbsp-dai.1", |
86 | .codec_dai = &twl4030_dai[TWL4030_DAI_HIFI], | 84 | .codec_dai_name = "twl4030-hifi", |
85 | .platform_name = "omap-pcm-audio", | ||
86 | .codec_name = "twl4030-codec", | ||
87 | .ops = &igep2_ops, | 87 | .ops = &igep2_ops, |
88 | }; | 88 | }; |
89 | 89 | ||
90 | /* Audio machine driver */ | 90 | /* Audio machine driver */ |
91 | static struct snd_soc_card snd_soc_card_igep2 = { | 91 | static struct snd_soc_card snd_soc_card_igep2 = { |
92 | .name = "igep2", | 92 | .name = "igep2", |
93 | .platform = &omap_soc_platform, | ||
94 | .dai_link = &igep2_dai, | 93 | .dai_link = &igep2_dai, |
95 | .num_links = 1, | 94 | .num_links = 1, |
96 | }; | 95 | }; |
97 | 96 | ||
98 | /* Audio subsystem */ | ||
99 | static struct snd_soc_device igep2_snd_devdata = { | ||
100 | .card = &snd_soc_card_igep2, | ||
101 | .codec_dev = &soc_codec_dev_twl4030, | ||
102 | }; | ||
103 | |||
104 | static struct platform_device *igep2_snd_device; | 97 | static struct platform_device *igep2_snd_device; |
105 | 98 | ||
106 | static int __init igep2_soc_init(void) | 99 | static int __init igep2_soc_init(void) |
107 | { | 100 | { |
108 | int ret; | 101 | int ret; |
109 | 102 | ||
110 | if (!machine_is_igep0020()) { | 103 | if (!machine_is_igep0020()) |
111 | pr_debug("Not IGEP v2!\n"); | ||
112 | return -ENODEV; | 104 | return -ENODEV; |
113 | } | ||
114 | printk(KERN_INFO "IGEP v2 SoC init\n"); | 105 | printk(KERN_INFO "IGEP v2 SoC init\n"); |
115 | 106 | ||
116 | igep2_snd_device = platform_device_alloc("soc-audio", -1); | 107 | igep2_snd_device = platform_device_alloc("soc-audio", -1); |
@@ -119,9 +110,7 @@ static int __init igep2_soc_init(void) | |||
119 | return -ENOMEM; | 110 | return -ENOMEM; |
120 | } | 111 | } |
121 | 112 | ||
122 | platform_set_drvdata(igep2_snd_device, &igep2_snd_devdata); | 113 | platform_set_drvdata(igep2_snd_device, &snd_soc_card_igep2); |
123 | igep2_snd_devdata.dev = &igep2_snd_device->dev; | ||
124 | *(unsigned int *)igep2_dai.cpu_dai->private_data = 1; /* McBSP2 */ | ||
125 | 114 | ||
126 | ret = platform_device_add(igep2_snd_device); | 115 | ret = platform_device_add(igep2_snd_device); |
127 | if (ret) | 116 | if (ret) |