Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
77a9d3eb
Commit
77a9d3eb
authored
Nov 30, 2009
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/asoc' into fix/misc
parents
e2cd52e6
e9ff5eb2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
5 deletions
+18
-5
sound/soc/codecs/tlv320aic23.c
sound/soc/codecs/tlv320aic23.c
+1
-2
sound/soc/soc-dapm.c
sound/soc/soc-dapm.c
+17
-3
No files found.
sound/soc/codecs/tlv320aic23.c
View file @
77a9d3eb
...
...
@@ -625,11 +625,10 @@ static int tlv320aic23_resume(struct platform_device *pdev)
{
struct
snd_soc_device
*
socdev
=
platform_get_drvdata
(
pdev
);
struct
snd_soc_codec
*
codec
=
socdev
->
card
->
codec
;
int
i
;
u16
reg
;
/* Sync reg_cache with the hardware */
for
(
reg
=
0
;
reg
<
ARRAY_SIZE
(
tlv320aic23_reg
);
i
++
)
{
for
(
reg
=
0
;
reg
<
TLV320AIC23_RESET
;
reg
++
)
{
u16
val
=
tlv320aic23_read_reg_cache
(
codec
,
reg
);
tlv320aic23_write
(
codec
,
reg
,
val
);
}
...
...
sound/soc/soc-dapm.c
View file @
77a9d3eb
...
...
@@ -973,9 +973,19 @@ static int dapm_power_widgets(struct snd_soc_codec *codec, int event)
if
(
!
w
->
power_check
)
continue
;
power
=
w
->
power_check
(
w
);
if
(
power
)
sys_power
=
1
;
/* If we're suspending then pull down all the
* power. */
switch
(
event
)
{
case
SND_SOC_DAPM_STREAM_SUSPEND
:
power
=
0
;
break
;
default:
power
=
w
->
power_check
(
w
);
if
(
power
)
sys_power
=
1
;
break
;
}
if
(
w
->
power
==
power
)
continue
;
...
...
@@ -999,8 +1009,12 @@ static int dapm_power_widgets(struct snd_soc_codec *codec, int event)
case
SND_SOC_DAPM_STREAM_RESUME
:
sys_power
=
1
;
break
;
case
SND_SOC_DAPM_STREAM_SUSPEND
:
sys_power
=
0
;
break
;
case
SND_SOC_DAPM_STREAM_NOP
:
sys_power
=
codec
->
bias_level
!=
SND_SOC_BIAS_STANDBY
;
break
;
default:
break
;
}
...
...
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