projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e3bdc8d
)
thermal: hisilicon: Handle return value of clk_prepare_enable
author
Arvind Yadav
<arvind.yadav.cs@gmail.com>
Tue, 6 Jun 2017 09:34:46 +0000
(15:04 +0530)
committer
Eduardo Valentin
<edubezval@gmail.com>
Fri, 30 Jun 2017 23:46:10 +0000
(16:46 -0700)
clk_prepare_enable() can fail here and we must check its return value.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
drivers/thermal/hisi_thermal.c
patch
|
blob
|
history
diff --git
a/drivers/thermal/hisi_thermal.c
b/drivers/thermal/hisi_thermal.c
index
f642966
..
9c3ce34
100644
(file)
--- a/
drivers/thermal/hisi_thermal.c
+++ b/
drivers/thermal/hisi_thermal.c
@@
-397,8
+397,11
@@
static int hisi_thermal_suspend(struct device *dev)
static int hisi_thermal_resume(struct device *dev)
{
struct hisi_thermal_data *data = dev_get_drvdata(dev);
+ int ret;
- clk_prepare_enable(data->clk);
+ ret = clk_prepare_enable(data->clk);
+ if (ret)
+ return ret;
data->irq_enabled = true;
hisi_thermal_enable_bind_irq_sensor(data);