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
3095b165
Commit
3095b165
authored
Dec 23, 2009
by
Takashi Iwai
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'fix/asoc' into for-linus
parents
4dc2ec09
48e3cbb3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
3 deletions
+5
-3
sound/soc/codecs/wm9712.c
sound/soc/codecs/wm9712.c
+2
-1
sound/soc/imx/mx27vis_wm8974.c
sound/soc/imx/mx27vis_wm8974.c
+2
-1
sound/soc/sh/fsi.c
sound/soc/sh/fsi.c
+1
-1
No files found.
sound/soc/codecs/wm9712.c
View file @
3095b165
...
...
@@ -463,7 +463,8 @@ static int ac97_write(struct snd_soc_codec *codec, unsigned int reg,
{
u16
*
cache
=
codec
->
reg_cache
;
soc_ac97_ops
.
write
(
codec
->
ac97
,
reg
,
val
);
if
(
reg
<
0x7c
)
soc_ac97_ops
.
write
(
codec
->
ac97
,
reg
,
val
);
reg
=
reg
>>
1
;
if
(
reg
<
(
ARRAY_SIZE
(
wm9712_reg
)))
cache
[
reg
]
=
val
;
...
...
sound/soc/imx/mx27vis_wm8974.c
View file @
3095b165
...
...
@@ -180,7 +180,8 @@ static int mx27vis_hifi_hw_free(struct snd_pcm_substream *substream)
struct
snd_soc_dai
*
codec_dai
=
rtd
->
dai
->
codec_dai
;
/* disable the PLL */
return
codec_dai
->
ops
->
set_pll
(
codec_dai
,
IGNORED_ARG
,
0
,
0
);
return
codec_dai
->
ops
->
set_pll
(
codec_dai
,
IGNORED_ARG
,
IGNORED_ARG
,
0
,
0
);
}
/*
...
...
sound/soc/sh/fsi.c
View file @
3095b165
...
...
@@ -876,7 +876,7 @@ static int fsi_probe(struct platform_device *pdev)
res
=
platform_get_resource
(
pdev
,
IORESOURCE_MEM
,
0
);
irq
=
platform_get_irq
(
pdev
,
0
);
if
(
!
res
||
!
irq
)
{
if
(
!
res
||
(
int
)
irq
<=
0
)
{
dev_err
(
&
pdev
->
dev
,
"Not enough FSI platform resources.
\n
"
);
ret
=
-
ENODEV
;
goto
exit
;
...
...
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