Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
d4a8da91
Commit
d4a8da91
authored
Oct 05, 2009
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-2.6.32' into for-2.6.33
parents
ce3e3737
e655a435
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
sound/soc/codecs/wm8940.c
sound/soc/codecs/wm8940.c
+1
-1
sound/soc/soc-dapm.c
sound/soc/soc-dapm.c
+3
-2
No files found.
sound/soc/codecs/wm8940.c
View file @
d4a8da91
...
...
@@ -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
;
}
...
...
sound/soc/soc-dapm.c
View file @
d4a8da91
...
...
@@ -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
;
}
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment