projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
283375c
)
ASoC: Sort DAPM sequences by CODEC as well
author
Mark Brown
<broonie@opensource.wolfsonmicro.com>
Mon, 7 Dec 2009 17:13:55 +0000
(17:13 +0000)
committer
Mark Brown
<broonie@opensource.wolfsonmicro.com>
Wed, 16 Dec 2009 17:30:37 +0000
(17:30 +0000)
In preparation for multiple device support.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
sound/soc/soc-dapm.c
patch
|
blob
|
history
diff --git
a/sound/soc/soc-dapm.c
b/sound/soc/soc-dapm.c
index 4cf58911f3b3bb9131dd67f7bae72931c01f30b1..de22c2f1842ec855c5ceeb27bd3361029b16542c 100644
(file)
--- a/
sound/soc/soc-dapm.c
+++ b/
sound/soc/soc-dapm.c
@@
-739,6
+739,8
@@
static int dapm_seq_compare(struct snd_soc_dapm_widget *a,
struct snd_soc_dapm_widget *b,
int sort[])
{
+ if (a->codec != b->codec)
+ return (unsigned long)a - (unsigned long)b;
if (sort[a->id] != sort[b->id])
return sort[a->id] - sort[b->id];
if (a->reg != b->reg)