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:
b6aa179
)
ASoC: add missing parameter to mx27vis_hifi_hw_free()
author
Guennadi Liakhovetski
<
[email protected]
>
Tue, 22 Dec 2009 08:26:10 +0000
(09:26 +0100)
committer
Mark Brown
<
[email protected]
>
Tue, 22 Dec 2009 12:33:56 +0000
(12:33 +0000)
Commit
2ccafed4
added an extra parameter to the DAI .set_pll() method, but
it missed this call in sound/soc/imx/mx27vis_wm8974.c.
Signed-off-by: Guennadi Liakhovetski <
[email protected]
>
Acked-by: Liam Girdwood <
[email protected]
>
Signed-off-by: Mark Brown <
[email protected]
>
sound/soc/imx/mx27vis_wm8974.c
patch
|
blob
|
history
diff --git
a/sound/soc/imx/mx27vis_wm8974.c
b/sound/soc/imx/mx27vis_wm8974.c
index 0267d2d91685775ff6f5e957df424794180ae781..07d2a248438c059ec3d5c8c5f1ebf28fa8f03895 100644
(file)
--- a/
sound/soc/imx/mx27vis_wm8974.c
+++ b/
sound/soc/imx/mx27vis_wm8974.c
@@
-180,7
+180,8
@@
static int mx27vis_hifi_hw_free(struct snd_pcm_substream *substream)
struct snd_soc_dai *codec_dai = rtd->dai->codec_dai;
/* disable the PLL */
- return codec_dai->ops->set_pll(codec_dai, IGNORED_ARG, 0, 0);
+ return codec_dai->ops->set_pll(codec_dai, IGNORED_ARG, IGNORED_ARG,
+ 0, 0);
}
/*