if (result)
goto unregister_governors;
- result = of_parse_thermal_zones();
- if (result)
- goto unregister_class;
-
result = register_pm_notifier(&thermal_pm_nb);
if (result)
pr_warn("Thermal: Can not register suspend notifier, return %d\n",
return 0;
-unregister_class:
- class_unregister(&thermal_class);
unregister_governors:
thermal_unregister_governors();
error:
{
struct device_node *np, *child, *sensor_np;
struct thermal_zone_device *tzd = ERR_PTR(-ENODEV);
+ static int old_tz_initialized;
+ int ret;
+
+ if (!old_tz_initialized) {
+ ret = of_parse_thermal_zones();
+ if (ret)
+ return ERR_PTR(ret);
+ old_tz_initialized = 1;
+ }
np = of_find_node_by_name(NULL, "thermal-zones");
if (!np)
return ERR_PTR(ret);
}
-static __init void of_thermal_free_zone(struct __thermal_zone *tz)
+static void of_thermal_free_zone(struct __thermal_zone *tz)
{
struct __thermal_bind_params *tbp;
int i, j;
* Return: 0 on success, proper error code otherwise
*
*/
-int __init of_parse_thermal_zones(void)
+int of_parse_thermal_zones(void)
{
struct device_node *np, *child;
struct __thermal_zone *tz;