Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 170161
b: refs/heads/master
c: d4a8da9
h: refs/heads/master
i:
  170159: 73eeede
v: v3
  • Loading branch information
Mark Brown committed Oct 5, 2009
1 parent d65ce0c commit 24d41cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: ce3e3737a3361e0c7030f8598eec36bb82050de6
refs/heads/master: d4a8da910e6db53d45ff76f7fdc584376de542df
2 changes: 1 addition & 1 deletion trunk/sound/soc/codecs/wm8940.c
Original file line number Diff line number Diff line change
Expand Up @@ -790,7 +790,7 @@ static int wm8940_register(struct wm8940_priv *wm8940,
codec->reg_cache = &wm8940->reg_cache;

ret = snd_soc_codec_set_cache_io(codec, 8, 16, control);
if (ret == 0) {
if (ret < 0) {
dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
return ret;
}
Expand Down
5 changes: 3 additions & 2 deletions trunk/sound/soc/soc-dapm.c
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ static int is_connected_output_ep(struct snd_soc_dapm_widget *widget)

/* connected jack or spk ? */
if (widget->id == snd_soc_dapm_hp || widget->id == snd_soc_dapm_spk ||
widget->id == snd_soc_dapm_line)
(widget->id == snd_soc_dapm_line && !list_empty(&widget->sources)))
return 1;
}

Expand Down Expand Up @@ -573,7 +573,8 @@ static int is_connected_input_ep(struct snd_soc_dapm_widget *widget)
return 1;

/* connected jack ? */
if (widget->id == snd_soc_dapm_mic || widget->id == snd_soc_dapm_line)
if (widget->id == snd_soc_dapm_mic ||
(widget->id == snd_soc_dapm_line && !list_empty(&widget->sinks)))
return 1;
}

Expand Down

0 comments on commit 24d41cb

Please sign in to comment.