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
c533b8e6
Commit
c533b8e6
authored
Dec 24, 2014
by
Mark Brown
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'asoc/fix/dapm' into asoc-linus
parents
97bf6af1
e3b1e6a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
sound/soc/soc-core.c
sound/soc/soc-core.c
+5
-9
No files found.
sound/soc/soc-core.c
View file @
c533b8e6
...
@@ -3230,7 +3230,7 @@ int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
...
@@ -3230,7 +3230,7 @@ int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
const
char
*
propname
)
const
char
*
propname
)
{
{
struct
device_node
*
np
=
card
->
dev
->
of_node
;
struct
device_node
*
np
=
card
->
dev
->
of_node
;
int
num_routes
,
old_routes
;
int
num_routes
;
struct
snd_soc_dapm_route
*
routes
;
struct
snd_soc_dapm_route
*
routes
;
int
i
,
ret
;
int
i
,
ret
;
...
@@ -3248,9 +3248,7 @@ int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
...
@@ -3248,9 +3248,7 @@ int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
return
-
EINVAL
;
return
-
EINVAL
;
}
}
old_routes
=
card
->
num_dapm_routes
;
routes
=
devm_kzalloc
(
card
->
dev
,
num_routes
*
sizeof
(
*
routes
),
routes
=
devm_kzalloc
(
card
->
dev
,
(
old_routes
+
num_routes
)
*
sizeof
(
*
routes
),
GFP_KERNEL
);
GFP_KERNEL
);
if
(
!
routes
)
{
if
(
!
routes
)
{
dev_err
(
card
->
dev
,
dev_err
(
card
->
dev
,
...
@@ -3258,11 +3256,9 @@ int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
...
@@ -3258,11 +3256,9 @@ int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
return
-
EINVAL
;
return
-
EINVAL
;
}
}
memcpy
(
routes
,
card
->
dapm_routes
,
old_routes
*
sizeof
(
*
routes
));
for
(
i
=
0
;
i
<
num_routes
;
i
++
)
{
for
(
i
=
0
;
i
<
num_routes
;
i
++
)
{
ret
=
of_property_read_string_index
(
np
,
propname
,
ret
=
of_property_read_string_index
(
np
,
propname
,
2
*
i
,
&
routes
[
old_routes
+
i
].
sink
);
2
*
i
,
&
routes
[
i
].
sink
);
if
(
ret
)
{
if
(
ret
)
{
dev_err
(
card
->
dev
,
dev_err
(
card
->
dev
,
"ASoC: Property '%s' index %d could not be read: %d
\n
"
,
"ASoC: Property '%s' index %d could not be read: %d
\n
"
,
...
@@ -3270,7 +3266,7 @@ int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
...
@@ -3270,7 +3266,7 @@ int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
return
-
EINVAL
;
return
-
EINVAL
;
}
}
ret
=
of_property_read_string_index
(
np
,
propname
,
ret
=
of_property_read_string_index
(
np
,
propname
,
(
2
*
i
)
+
1
,
&
routes
[
old_routes
+
i
].
source
);
(
2
*
i
)
+
1
,
&
routes
[
i
].
source
);
if
(
ret
)
{
if
(
ret
)
{
dev_err
(
card
->
dev
,
dev_err
(
card
->
dev
,
"ASoC: Property '%s' index %d could not be read: %d
\n
"
,
"ASoC: Property '%s' index %d could not be read: %d
\n
"
,
...
@@ -3279,7 +3275,7 @@ int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
...
@@ -3279,7 +3275,7 @@ int snd_soc_of_parse_audio_routing(struct snd_soc_card *card,
}
}
}
}
card
->
num_dapm_routes
+
=
num_routes
;
card
->
num_dapm_routes
=
num_routes
;
card
->
dapm_routes
=
routes
;
card
->
dapm_routes
=
routes
;
return
0
;
return
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