diff options
Diffstat (limited to 'drivers/cpufreq/ti-cpufreq.c')
| -rw-r--r-- | drivers/cpufreq/ti-cpufreq.c | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/cpufreq/ti-cpufreq.c b/drivers/cpufreq/ti-cpufreq.c index 46c41e2ca727..714ed53753fa 100644 --- a/drivers/cpufreq/ti-cpufreq.c +++ b/drivers/cpufreq/ti-cpufreq.c @@ -347,12 +347,10 @@ static const struct of_device_id ti_cpufreq_of_match[] = {  static const struct of_device_id *ti_cpufreq_match_node(void)  { -	struct device_node *np; +	struct device_node *np __free(device_node) = of_find_node_by_path("/");  	const struct of_device_id *match; -	np = of_find_node_by_path("/");  	match = of_match_node(ti_cpufreq_of_match, np); -	of_node_put(np);  	return match;  }  |