ASoC: jive: Automatically disconnect non-connected pins
All DAPM input and output pins of the wm8750 are either used in the card's DAPM routing table or are marked as not connected. Set the fully_routed flag of the card instead of manually marking the unused inputs and outputs as not connected. This makes the code a bit shorter and cleaner. Signed-off-by: Lars-Peter Clausen <lars@metafoo.de> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
5d6bdfd568
commit
3a41e0f723
1 changed files with 1 additions and 17 deletions
|
@ -83,22 +83,6 @@ static struct snd_soc_ops jive_ops = {
|
||||||
.hw_params = jive_hw_params,
|
.hw_params = jive_hw_params,
|
||||||
};
|
};
|
||||||
|
|
||||||
static int jive_wm8750_init(struct snd_soc_pcm_runtime *rtd)
|
|
||||||
{
|
|
||||||
struct snd_soc_codec *codec = rtd->codec;
|
|
||||||
struct snd_soc_dapm_context *dapm = &codec->dapm;
|
|
||||||
|
|
||||||
/* These endpoints are not being used. */
|
|
||||||
snd_soc_dapm_nc_pin(dapm, "LINPUT2");
|
|
||||||
snd_soc_dapm_nc_pin(dapm, "RINPUT2");
|
|
||||||
snd_soc_dapm_nc_pin(dapm, "LINPUT3");
|
|
||||||
snd_soc_dapm_nc_pin(dapm, "RINPUT3");
|
|
||||||
snd_soc_dapm_nc_pin(dapm, "OUT3");
|
|
||||||
snd_soc_dapm_nc_pin(dapm, "MONO");
|
|
||||||
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
static struct snd_soc_dai_link jive_dai = {
|
static struct snd_soc_dai_link jive_dai = {
|
||||||
.name = "wm8750",
|
.name = "wm8750",
|
||||||
.stream_name = "WM8750",
|
.stream_name = "WM8750",
|
||||||
|
@ -106,7 +90,6 @@ static struct snd_soc_dai_link jive_dai = {
|
||||||
.codec_dai_name = "wm8750-hifi",
|
.codec_dai_name = "wm8750-hifi",
|
||||||
.platform_name = "s3c2412-i2s",
|
.platform_name = "s3c2412-i2s",
|
||||||
.codec_name = "wm8750.0-001a",
|
.codec_name = "wm8750.0-001a",
|
||||||
.init = jive_wm8750_init,
|
|
||||||
.dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
|
.dai_fmt = SND_SOC_DAIFMT_I2S | SND_SOC_DAIFMT_NB_NF |
|
||||||
SND_SOC_DAIFMT_CBS_CFS,
|
SND_SOC_DAIFMT_CBS_CFS,
|
||||||
.ops = &jive_ops,
|
.ops = &jive_ops,
|
||||||
|
@ -123,6 +106,7 @@ static struct snd_soc_card snd_soc_machine_jive = {
|
||||||
.num_dapm_widgets = ARRAY_SIZE(wm8750_dapm_widgets),
|
.num_dapm_widgets = ARRAY_SIZE(wm8750_dapm_widgets),
|
||||||
.dapm_routes = audio_map,
|
.dapm_routes = audio_map,
|
||||||
.num_dapm_routes = ARRAY_SIZE(audio_map),
|
.num_dapm_routes = ARRAY_SIZE(audio_map),
|
||||||
|
.fully_routed = true,
|
||||||
};
|
};
|
||||||
|
|
||||||
static struct platform_device *jive_snd_device;
|
static struct platform_device *jive_snd_device;
|
||||||
|
|
Loading…
Add table
Reference in a new issue