diff options
author | Luis Henriques <luis.henriques@canonical.com> | 2014-12-03 21:20:21 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-01-08 10:27:47 -0800 |
commit | 725a7308ec9dc4fef461467f35d88bb2a3c6069e (patch) | |
tree | 90b8a656636a37d4b60a0adde5e5ea150971d2b7 | |
parent | ec4f7851ddba9e35774f115e9ce69d4d644a2291 (diff) | |
download | linux-stable-725a7308ec9dc4fef461467f35d88bb2a3c6069e.tar.gz linux-stable-725a7308ec9dc4fef461467f35d88bb2a3c6069e.tar.bz2 linux-stable-725a7308ec9dc4fef461467f35d88bb2a3c6069e.zip |
thermal: Fix error path in thermal_init()
commit 9d367e5e7b05c71a8c1ac4e9b6e00ba45a79f2fc upstream.
thermal_unregister_governors() and class_unregister() were being called in
the wrong order.
Fixes: 80a26a5c22b9 ("Thermal: build thermal governors into thermal_sys module")
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/thermal/thermal_core.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/thermal/thermal_core.c b/drivers/thermal/thermal_core.c index 71b0ec0c370d..284733e1fb6f 100644 --- a/drivers/thermal/thermal_core.c +++ b/drivers/thermal/thermal_core.c @@ -1824,10 +1824,10 @@ static int __init thermal_init(void) exit_netlink: genetlink_exit(); -unregister_governors: - thermal_unregister_governors(); unregister_class: class_unregister(&thermal_class); +unregister_governors: + thermal_unregister_governors(); error: idr_destroy(&thermal_tz_idr); idr_destroy(&thermal_cdev_idr); |