projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d7fa710
)
ASoC: fsl-ssi: Add missing clk_disable_unprepare() on error in fsl_ssi_probe()
author
Wei Yongjun
<yongjun_wei@trendmicro.com.cn>
Thu, 9 Jan 2014 14:27:31 +0000
(22:27 +0800)
committer
Mark Brown
<broonie@linaro.org>
Thu, 9 Jan 2014 17:26:01 +0000
(17:26 +0000)
Add the missing clk_disable_unprepare() before return from
fsl_ssi_probe() in the request irq error handling case.
Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Mark Brown <broonie@linaro.org>
sound/soc/fsl/fsl_ssi.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/soc/fsl/fsl_ssi.c
b/sound/soc/fsl/fsl_ssi.c
index f662dddf2085f146a40df3ece91216100a37cbca..6c2f040f49ae3c7282eed7a92662171703ad83e4 100644
(file)
--- a/
sound/soc/fsl/fsl_ssi.c
+++ b/
sound/soc/fsl/fsl_ssi.c
@@
-1439,7
+1439,7
@@
static int fsl_ssi_probe(struct platform_device *pdev)
if (ret < 0) {
dev_err(&pdev->dev, "could not claim irq %u\n",
ssi_private->irq);
- goto error_
irqmap
;
+ goto error_
clk
;
}
}