projects
/
platform
/
kernel
/
linux-3.10.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6970602
)
ASoC: sam9g20_wm8731: disable clock and correct sequence when unload
author
Bo Shen
<voice.shen@atmel.com>
Thu, 31 Jan 2013 03:53:40 +0000
(11:53 +0800)
committer
Mark Brown
<broonie@opensource.wolfsonmicro.com>
Mon, 4 Feb 2013 18:34:14 +0000
(18:34 +0000)
disable clock and correct sequence when unload
Signed-off-by: Bo Shen <voice.shen@atmel.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
sound/soc/atmel/sam9g20_wm8731.c
patch
|
blob
|
history
diff --git
a/sound/soc/atmel/sam9g20_wm8731.c
b/sound/soc/atmel/sam9g20_wm8731.c
index
da97629
..
2d6fbd0
100644
(file)
--- a/
sound/soc/atmel/sam9g20_wm8731.c
+++ b/
sound/soc/atmel/sam9g20_wm8731.c
@@
-305,10
+305,10
@@
static int at91sam9g20ek_audio_remove(struct platform_device *pdev)
{
struct snd_soc_card *card = platform_get_drvdata(pdev);
- atmel_ssc_put_audio(0);
- snd_soc_unregister_card(card);
- clk_put(mclk);
+ clk_disable(mclk);
mclk = NULL;
+ snd_soc_unregister_card(card);
+ atmel_ssc_put_audio(0);
return 0;
}