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
7c310f16
Commit
7c310f16
authored
Jan 12, 2018
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'asoc/topic/core' into asoc-next
parents
a9930569
b9f902b7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
sound/soc/soc-core.c
sound/soc/soc-core.c
+4
-2
sound/soc/soc-ops.c
sound/soc/soc-ops.c
+2
-2
No files found.
sound/soc/soc-core.c
View file @
7c310f16
...
...
@@ -213,7 +213,7 @@ static umode_t soc_dev_attr_is_visible(struct kobject *kobj,
if
(
attr
==
&
dev_attr_pmdown_time
.
attr
)
return
attr
->
mode
;
/* always visible */
return
rtd
->
codec
?
attr
->
mode
:
0
;
/* enabled only with codec */
return
rtd
->
num_codecs
?
attr
->
mode
:
0
;
/* enabled only with codec */
}
static
const
struct
attribute_group
soc_dapm_dev_group
=
{
...
...
@@ -1945,7 +1945,9 @@ int snd_soc_runtime_set_dai_fmt(struct snd_soc_pcm_runtime *rtd,
}
/* Flip the polarity for the "CPU" end of a CODEC<->CODEC link */
if
(
cpu_dai
->
codec
)
{
/* the component which has non_legacy_dai_naming is Codec */
if
(
cpu_dai
->
codec
||
cpu_dai
->
component
->
driver
->
non_legacy_dai_naming
)
{
unsigned
int
inv_dai_fmt
;
inv_dai_fmt
=
dai_fmt
&
~
SND_SOC_DAIFMT_MASTER_MASK
;
...
...
sound/soc/soc-ops.c
View file @
7c310f16
...
...
@@ -378,7 +378,7 @@ int snd_soc_get_volsw_sx(struct snd_kcontrol *kcontrol,
unsigned
int
rshift
=
mc
->
rshift
;
int
max
=
mc
->
max
;
int
min
=
mc
->
min
;
int
mask
=
(
1
<<
(
fls
(
min
+
max
)
-
1
))
-
1
;
unsigned
int
mask
=
(
1
<<
(
fls
(
min
+
max
)
-
1
))
-
1
;
unsigned
int
val
;
int
ret
;
...
...
@@ -423,7 +423,7 @@ int snd_soc_put_volsw_sx(struct snd_kcontrol *kcontrol,
unsigned
int
rshift
=
mc
->
rshift
;
int
max
=
mc
->
max
;
int
min
=
mc
->
min
;
int
mask
=
(
1
<<
(
fls
(
min
+
max
)
-
1
))
-
1
;
unsigned
int
mask
=
(
1
<<
(
fls
(
min
+
max
)
-
1
))
-
1
;
int
err
=
0
;
unsigned
int
val
,
val_mask
,
val2
=
0
;
...
...
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