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
ca945cf9
Commit
ca945cf9
authored
Aug 30, 2015
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'asoc/topic/pcm1681' into asoc-next
parents
4253f3a8
48f403be
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
4 deletions
+9
-4
sound/soc/codecs/pcm1681.c
sound/soc/codecs/pcm1681.c
+9
-4
No files found.
sound/soc/codecs/pcm1681.c
View file @
ca945cf9
...
...
@@ -95,17 +95,22 @@ static int pcm1681_set_deemph(struct snd_soc_codec *codec)
struct
pcm1681_private
*
priv
=
snd_soc_codec_get_drvdata
(
codec
);
int
i
=
0
,
val
=
-
1
,
enable
=
0
;
if
(
priv
->
deemph
)
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
pcm1681_deemph
);
i
++
)
if
(
pcm1681_deemph
[
i
]
==
priv
->
rate
)
if
(
priv
->
deemph
)
{
for
(
i
=
0
;
i
<
ARRAY_SIZE
(
pcm1681_deemph
);
i
++
)
{
if
(
pcm1681_deemph
[
i
]
==
priv
->
rate
)
{
val
=
i
;
break
;
}
}
}
if
(
val
!=
-
1
)
{
regmap_update_bits
(
priv
->
regmap
,
PCM1681_DEEMPH_CONTROL
,
PCM1681_DEEMPH_RATE_MASK
,
val
<<
3
);
enable
=
1
;
}
else
}
else
{
enable
=
0
;
}
/* enable/disable deemphasis functionality */
return
regmap_update_bits
(
priv
->
regmap
,
PCM1681_DEEMPH_CONTROL
,
...
...
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