projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1ceeab2
)
ASoC: rsnd: tidyup DVC/SRC/SSI order
author
Kuninori Morimoto
<
[email protected]
>
Thu, 15 Jan 2015 08:09:44 +0000
(08:09 +0000)
committer
Mark Brown
<
[email protected]
>
Thu, 15 Jan 2015 11:37:49 +0000
(11:37 +0000)
Current R-Car sound driver calls SRC -> SSI -> DVC functions,
but, it should be DVC -> SRC -> SSI.
Otherwise, SSI (= interface of codec) will have underrun error
when playback.
Signed-off-by: Kuninori Morimoto <
[email protected]
>
Signed-off-by: Mark Brown <
[email protected]
>
sound/soc/sh/rcar/rsnd.h
patch
|
blob
|
history
diff --git
a/sound/soc/sh/rcar/rsnd.h
b/sound/soc/sh/rcar/rsnd.h
index 11a1c412f1f13bcca286dbd335fda17fc1775070..b57d8ace012a777e11b1c12c54714a583ea0890c 100644
(file)
--- a/
sound/soc/sh/rcar/rsnd.h
+++ b/
sound/soc/sh/rcar/rsnd.h
@@
-190,9
+190,9
@@
void rsnd_dma_quit(struct rsnd_priv *priv,
* R-Car sound mod
*/
enum rsnd_mod_type {
- RSND_MOD_SRC = 0,
+ RSND_MOD_DVC = 0,
+ RSND_MOD_SRC,
RSND_MOD_SSI,
- RSND_MOD_DVC,
RSND_MOD_MAX,
};