diff options
Diffstat (limited to 'sound/soc/omap/am3517evm.c')
-rw-r--r-- | sound/soc/omap/am3517evm.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sound/soc/omap/am3517evm.c b/sound/soc/omap/am3517evm.c index 979dd508305f..161750443ebc 100644 --- a/sound/soc/omap/am3517evm.c +++ b/sound/soc/omap/am3517evm.c | |||
@@ -22,7 +22,6 @@ | |||
22 | #include <sound/core.h> | 22 | #include <sound/core.h> |
23 | #include <sound/pcm.h> | 23 | #include <sound/pcm.h> |
24 | #include <sound/soc.h> | 24 | #include <sound/soc.h> |
25 | #include <sound/soc-dapm.h> | ||
26 | 25 | ||
27 | #include <asm/mach-types.h> | 26 | #include <asm/mach-types.h> |
28 | #include <mach/hardware.h> | 27 | #include <mach/hardware.h> |
@@ -114,20 +113,21 @@ static const struct snd_soc_dapm_route audio_map[] = { | |||
114 | static int am3517evm_aic23_init(struct snd_soc_pcm_runtime *rtd) | 113 | static int am3517evm_aic23_init(struct snd_soc_pcm_runtime *rtd) |
115 | { | 114 | { |
116 | struct snd_soc_codec *codec = rtd->codec; | 115 | struct snd_soc_codec *codec = rtd->codec; |
116 | struct snd_soc_dapm_context *dapm = &codec->dapm; | ||
117 | 117 | ||
118 | /* Add am3517-evm specific widgets */ | 118 | /* Add am3517-evm specific widgets */ |
119 | snd_soc_dapm_new_controls(codec, tlv320aic23_dapm_widgets, | 119 | snd_soc_dapm_new_controls(dapm, tlv320aic23_dapm_widgets, |
120 | ARRAY_SIZE(tlv320aic23_dapm_widgets)); | 120 | ARRAY_SIZE(tlv320aic23_dapm_widgets)); |
121 | 121 | ||
122 | /* Set up davinci-evm specific audio path audio_map */ | 122 | /* Set up davinci-evm specific audio path audio_map */ |
123 | snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map)); | 123 | snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map)); |
124 | 124 | ||
125 | /* always connected */ | 125 | /* always connected */ |
126 | snd_soc_dapm_enable_pin(codec, "Line Out"); | 126 | snd_soc_dapm_enable_pin(dapm, "Line Out"); |
127 | snd_soc_dapm_enable_pin(codec, "Line In"); | 127 | snd_soc_dapm_enable_pin(dapm, "Line In"); |
128 | snd_soc_dapm_enable_pin(codec, "Mic In"); | 128 | snd_soc_dapm_enable_pin(dapm, "Mic In"); |
129 | 129 | ||
130 | snd_soc_dapm_sync(codec); | 130 | snd_soc_dapm_sync(dapm); |
131 | 131 | ||
132 | return 0; | 132 | return 0; |
133 | } | 133 | } |