projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5190404
)
thermal: qoriq: Fix error path of calling qoriq_tmu_register_tmu_zone fail
author
Anson Huang
<Anson.Huang@nxp.com>
Tue, 30 Jul 2019 02:21:23 +0000
(10:21 +0800)
committer
Zhang Rui
<rui.zhang@intel.com>
Wed, 28 Aug 2019 08:33:22 +0000
(16:33 +0800)
When registering tmu zone failed, the error path should be err_tmu
instead of err_iomap, as iounmap() needs to be called.
Signed-off-by: Anson Huang <Anson.Huang@nxp.com>
Reviewed-by: Dong Aisheng <aisheng.dong@nxp.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
drivers/thermal/qoriq_thermal.c
patch
|
blob
|
history
diff --git
a/drivers/thermal/qoriq_thermal.c
b/drivers/thermal/qoriq_thermal.c
index
2893947
..
5755a11
100644
(file)
--- a/
drivers/thermal/qoriq_thermal.c
+++ b/
drivers/thermal/qoriq_thermal.c
@@
-231,7
+231,7
@@
static int qoriq_tmu_probe(struct platform_device *pdev)
if (ret < 0) {
dev_err(&pdev->dev, "Failed to register sensors\n");
ret = -ENODEV;
- goto err_
iomap
;
+ goto err_
tmu
;
}
return 0;