aboutsummaryrefslogtreecommitdiffstats
path: root/sound/soc/soc-dapm.c
diff options
context:
space:
mode:
Diffstat (limited to 'sound/soc/soc-dapm.c')
-rw-r--r--sound/soc/soc-dapm.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/sound/soc/soc-dapm.c b/sound/soc/soc-dapm.c
index 8711aab01445..e49c56d4951e 100644
--- a/sound/soc/soc-dapm.c
+++ b/sound/soc/soc-dapm.c
@@ -1845,6 +1845,13 @@ static int snd_soc_dapm_set_pin(struct snd_soc_dapm_context *dapm,
1845 */ 1845 */
1846int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm) 1846int snd_soc_dapm_sync(struct snd_soc_dapm_context *dapm)
1847{ 1847{
1848 /*
1849 * Suppress early reports (eg, jacks syncing their state) to avoid
1850 * silly DAPM runs during card startup.
1851 */
1852 if (!dapm->card || !dapm->card->instantiated)
1853 return 0;
1854
1848 return dapm_power_widgets(dapm, SND_SOC_DAPM_STREAM_NOP); 1855 return dapm_power_widgets(dapm, SND_SOC_DAPM_STREAM_NOP);
1849} 1856}
1850EXPORT_SYMBOL_GPL(snd_soc_dapm_sync); 1857EXPORT_SYMBOL_GPL(snd_soc_dapm_sync);