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
01c2a84c
Commit
01c2a84c
authored
Jan 10, 2017
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'asoc/fix/component' into asoc-linus
parents
a121103c
d2e3a135
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
5 deletions
+8
-5
include/sound/soc.h
include/sound/soc.h
+3
-0
sound/soc/soc-core.c
sound/soc/soc-core.c
+5
-5
No files found.
include/sound/soc.h
View file @
01c2a84c
...
@@ -813,6 +813,7 @@ struct snd_soc_component {
...
@@ -813,6 +813,7 @@ struct snd_soc_component {
unsigned
int
suspended
:
1
;
/* is in suspend PM state */
unsigned
int
suspended
:
1
;
/* is in suspend PM state */
struct
list_head
list
;
struct
list_head
list
;
struct
list_head
card_aux_list
;
/* for auxiliary bound components */
struct
list_head
card_list
;
struct
list_head
card_list
;
struct
snd_soc_dai_driver
*
dai_drv
;
struct
snd_soc_dai_driver
*
dai_drv
;
...
@@ -1152,6 +1153,7 @@ struct snd_soc_card {
...
@@ -1152,6 +1153,7 @@ struct snd_soc_card {
*/
*/
struct
snd_soc_aux_dev
*
aux_dev
;
struct
snd_soc_aux_dev
*
aux_dev
;
int
num_aux_devs
;
int
num_aux_devs
;
struct
list_head
aux_comp_list
;
const
struct
snd_kcontrol_new
*
controls
;
const
struct
snd_kcontrol_new
*
controls
;
int
num_controls
;
int
num_controls
;
...
@@ -1547,6 +1549,7 @@ static inline void snd_soc_initialize_card_lists(struct snd_soc_card *card)
...
@@ -1547,6 +1549,7 @@ static inline void snd_soc_initialize_card_lists(struct snd_soc_card *card)
INIT_LIST_HEAD
(
&
card
->
widgets
);
INIT_LIST_HEAD
(
&
card
->
widgets
);
INIT_LIST_HEAD
(
&
card
->
paths
);
INIT_LIST_HEAD
(
&
card
->
paths
);
INIT_LIST_HEAD
(
&
card
->
dapm_list
);
INIT_LIST_HEAD
(
&
card
->
dapm_list
);
INIT_LIST_HEAD
(
&
card
->
aux_comp_list
);
INIT_LIST_HEAD
(
&
card
->
component_dev_list
);
INIT_LIST_HEAD
(
&
card
->
component_dev_list
);
}
}
...
...
sound/soc/soc-core.c
View file @
01c2a84c
...
@@ -1748,6 +1748,7 @@ static int soc_bind_aux_dev(struct snd_soc_card *card, int num)
...
@@ -1748,6 +1748,7 @@ static int soc_bind_aux_dev(struct snd_soc_card *card, int num)
component
->
init
=
aux_dev
->
init
;
component
->
init
=
aux_dev
->
init
;
component
->
auxiliary
=
1
;
component
->
auxiliary
=
1
;
list_add
(
&
component
->
card_aux_list
,
&
card
->
aux_comp_list
);
return
0
;
return
0
;
...
@@ -1758,16 +1759,14 @@ static int soc_bind_aux_dev(struct snd_soc_card *card, int num)
...
@@ -1758,16 +1759,14 @@ static int soc_bind_aux_dev(struct snd_soc_card *card, int num)
static
int
soc_probe_aux_devices
(
struct
snd_soc_card
*
card
)
static
int
soc_probe_aux_devices
(
struct
snd_soc_card
*
card
)
{
{
struct
snd_soc_component
*
comp
;
struct
snd_soc_component
*
comp
,
*
tmp
;
int
order
;
int
order
;
int
ret
;
int
ret
;
for
(
order
=
SND_SOC_COMP_ORDER_FIRST
;
order
<=
SND_SOC_COMP_ORDER_LAST
;
for
(
order
=
SND_SOC_COMP_ORDER_FIRST
;
order
<=
SND_SOC_COMP_ORDER_LAST
;
order
++
)
{
order
++
)
{
list_for_each_entry
(
comp
,
&
card
->
component_dev_list
,
card_list
)
{
list_for_each_entry_safe
(
comp
,
tmp
,
&
card
->
aux_comp_list
,
if
(
!
comp
->
auxiliary
)
card_aux_list
)
{
continue
;
if
(
comp
->
driver
->
probe_order
==
order
)
{
if
(
comp
->
driver
->
probe_order
==
order
)
{
ret
=
soc_probe_component
(
card
,
comp
);
ret
=
soc_probe_component
(
card
,
comp
);
if
(
ret
<
0
)
{
if
(
ret
<
0
)
{
...
@@ -1776,6 +1775,7 @@ static int soc_probe_aux_devices(struct snd_soc_card *card)
...
@@ -1776,6 +1775,7 @@ static int soc_probe_aux_devices(struct snd_soc_card *card)
comp
->
name
,
ret
);
comp
->
name
,
ret
);
return
ret
;
return
ret
;
}
}
list_del
(
&
comp
->
card_aux_list
);
}
}
}
}
}
}
...
...
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