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
Kirill Smelkov
linux
Commits
ea945ab4
Commit
ea945ab4
authored
Oct 02, 2011
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-3.1' into for-3.2
parents
a3c6dac2
21d17dd2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
sound/soc/codecs/wm8753.c
sound/soc/codecs/wm8753.c
+2
-2
sound/soc/pxa/zylonite.c
sound/soc/pxa/zylonite.c
+4
-4
No files found.
sound/soc/codecs/wm8753.c
View file @
ea945ab4
...
...
@@ -1455,8 +1455,8 @@ static int wm8753_probe(struct snd_soc_codec *codec)
/* set the update bits */
snd_soc_update_bits
(
codec
,
WM8753_LDAC
,
0x0100
,
0x0100
);
snd_soc_update_bits
(
codec
,
WM8753_RDAC
,
0x0100
,
0x0100
);
snd_soc_update_bits
(
codec
,
WM8753_L
DA
C
,
0x0100
,
0x0100
);
snd_soc_update_bits
(
codec
,
WM8753_R
DA
C
,
0x0100
,
0x0100
);
snd_soc_update_bits
(
codec
,
WM8753_L
AD
C
,
0x0100
,
0x0100
);
snd_soc_update_bits
(
codec
,
WM8753_R
AD
C
,
0x0100
,
0x0100
);
snd_soc_update_bits
(
codec
,
WM8753_LOUT1V
,
0x0100
,
0x0100
);
snd_soc_update_bits
(
codec
,
WM8753_ROUT1V
,
0x0100
,
0x0100
);
snd_soc_update_bits
(
codec
,
WM8753_LOUT2V
,
0x0100
,
0x0100
);
...
...
sound/soc/pxa/zylonite.c
View file @
ea945ab4
...
...
@@ -196,20 +196,20 @@ static int zylonite_probe(struct snd_soc_card *card)
if
(
clk_pout
)
{
pout
=
clk_get
(
NULL
,
"CLK_POUT"
);
if
(
IS_ERR
(
pout
))
{
dev_err
(
&
pdev
->
dev
,
"Unable to obtain CLK_POUT: %ld
\n
"
,
dev_err
(
card
->
dev
,
"Unable to obtain CLK_POUT: %ld
\n
"
,
PTR_ERR
(
pout
));
return
PTR_ERR
(
pout
);
}
ret
=
clk_enable
(
pout
);
if
(
ret
!=
0
)
{
dev_err
(
&
pdev
->
dev
,
"Unable to enable CLK_POUT: %d
\n
"
,
dev_err
(
card
->
dev
,
"Unable to enable CLK_POUT: %d
\n
"
,
ret
);
clk_put
(
pout
);
return
ret
;
}
dev_dbg
(
&
pdev
->
dev
,
"MCLK enabled at %luHz
\n
"
,
dev_dbg
(
card
->
dev
,
"MCLK enabled at %luHz
\n
"
,
clk_get_rate
(
pout
));
}
...
...
@@ -241,7 +241,7 @@ static int zylonite_resume_pre(struct snd_soc_card *card)
if
(
clk_pout
)
{
ret
=
clk_enable
(
pout
);
if
(
ret
!=
0
)
dev_err
(
&
pdev
->
dev
,
"Unable to enable CLK_POUT: %d
\n
"
,
dev_err
(
card
->
dev
,
"Unable to enable CLK_POUT: %d
\n
"
,
ret
);
}
...
...
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