Message ID | 20191219222154.16100-2-daniel.lezcano@linaro.org |
---|---|
State | New |
Headers | show |
Series | [1/2] thermal/drivers/of-thermal: Make of_thermal_destroy_zones static | expand |
diff --git a/drivers/thermal/of-thermal.c b/drivers/thermal/of-thermal.c index 4333cd5f1073..27d5b85eb2ca 100644 --- a/drivers/thermal/of-thermal.c +++ b/drivers/thermal/of-thermal.c @@ -977,7 +977,7 @@ __init *thermal_of_build_thermal_zone(struct device_node *np) return ERR_PTR(ret); } -static inline void of_thermal_free_zone(struct __thermal_zone *tz) +static __init void of_thermal_free_zone(struct __thermal_zone *tz) { struct __thermal_bind_params *tbp; int i, j;
The function of_thermal_free_zone() is only used the initialization function which all belonging to the init section. Move it also to the __init section. Signed-off-by: Daniel Lezcano <daniel.lezcano@linaro.org> --- drivers/thermal/of-thermal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.17.1