diff options
| author | David S. Miller <davem@davemloft.net> | 2011-12-06 21:10:05 -0500 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2011-12-06 21:10:05 -0500 | 
| commit | 959327c7842e8621e28b89acea7d57ff02b60972 (patch) | |
| tree | b00de195fa401186228796abdcd16812862fbf4d /sound/soc/soc-core.c | |
| parent | f84ea779c25dabc90956f1c329e5e5c501ea96cc (diff) | |
| parent | b835c0f47f725d864bf2545f10c733b754bb6d51 (diff) | |
| download | olio-linux-3.10-959327c7842e8621e28b89acea7d57ff02b60972.tar.xz olio-linux-3.10-959327c7842e8621e28b89acea7d57ff02b60972.zip  | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Diffstat (limited to 'sound/soc/soc-core.c')
| -rw-r--r-- | sound/soc/soc-core.c | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/sound/soc/soc-core.c b/sound/soc/soc-core.c index a5d3685a5d3..a25fa63ce9a 100644 --- a/sound/soc/soc-core.c +++ b/sound/soc/soc-core.c @@ -709,6 +709,12 @@ int snd_soc_resume(struct device *dev)  	struct snd_soc_card *card = dev_get_drvdata(dev);  	int i, ac97_control = 0; +	/* If the initialization of this soc device failed, there is no codec +	 * associated with it. Just bail out in this case. +	 */ +	if (list_empty(&card->codec_dev_list)) +		return 0; +  	/* AC97 devices might have other drivers hanging off them so  	 * need to resume immediately.  Other drivers don't have that  	 * problem and may take a substantial amount of time to resume  |