diff options
author | Stephen Warren <swarren@nvidia.com> | 2011-11-22 20:21:13 -0500 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-11-23 05:24:10 -0500 |
commit | 65713ce8442b42c6f688bd8b0950a49d8f4dcf5f (patch) | |
tree | 20d251c473ab523635cf8aa03f8f2ca00b12792e /sound/soc/tegra/trimslice.c | |
parent | f2296d7bf19a210a462a57bb90b1c9263d18a4ee (diff) |
ASoC: Tegra: Move DAS configuration into machine drivers
This removes potentially machine-specific routing knowledge from the
I2S driverinto the machine drivers, which is better equipped to know
what the appropriate routing configuration is.
Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/tegra/trimslice.c')
-rw-r--r-- | sound/soc/tegra/trimslice.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sound/soc/tegra/trimslice.c b/sound/soc/tegra/trimslice.c index b3a7efa6d960..2699a6fa45f9 100644 --- a/sound/soc/tegra/trimslice.c +++ b/sound/soc/tegra/trimslice.c | |||
@@ -118,7 +118,22 @@ static const struct snd_soc_dapm_route trimslice_audio_map[] = { | |||
118 | static int trimslice_asoc_init(struct snd_soc_pcm_runtime *rtd) | 118 | static int trimslice_asoc_init(struct snd_soc_pcm_runtime *rtd) |
119 | { | 119 | { |
120 | struct snd_soc_codec *codec = rtd->codec; | 120 | struct snd_soc_codec *codec = rtd->codec; |
121 | struct snd_soc_card *card = codec->card; | ||
121 | struct snd_soc_dapm_context *dapm = &codec->dapm; | 122 | struct snd_soc_dapm_context *dapm = &codec->dapm; |
123 | int ret; | ||
124 | |||
125 | ret = tegra_das_connect_dap_to_dac(TEGRA_DAS_DAP_ID_1, | ||
126 | TEGRA_DAS_DAP_SEL_DAC1); | ||
127 | if (ret) { | ||
128 | dev_err(card->dev, "Can't set up DAS DAP connection\n"); | ||
129 | return ret; | ||
130 | } | ||
131 | ret = tegra_das_connect_dac_to_dap(TEGRA_DAS_DAC_ID_1, | ||
132 | TEGRA_DAS_DAC_SEL_DAP1); | ||
133 | if (ret) { | ||
134 | dev_err(card->dev, "Can't set up DAS DAC connection\n"); | ||
135 | return ret; | ||
136 | } | ||
122 | 137 | ||
123 | snd_soc_dapm_nc_pin(dapm, "LHPOUT"); | 138 | snd_soc_dapm_nc_pin(dapm, "LHPOUT"); |
124 | snd_soc_dapm_nc_pin(dapm, "RHPOUT"); | 139 | snd_soc_dapm_nc_pin(dapm, "RHPOUT"); |