mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-06 05:13:18 +00:00
mips: mti-malta: Fix refcount leak in malta-time.c
In update_gic_frequency_dt(), of_find_compatible_node() will return a node pointer with refcount incremented. We should use of_node_put() when it is not used anymore. Signed-off-by: Liang He <windhl@126.com> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
This commit is contained in:
parent
4becf6417b
commit
608d94cb84
@ -214,6 +214,8 @@ static void update_gic_frequency_dt(void)
|
|||||||
|
|
||||||
if (of_update_property(node, &gic_frequency_prop) < 0)
|
if (of_update_property(node, &gic_frequency_prop) < 0)
|
||||||
pr_err("error updating gic frequency property\n");
|
pr_err("error updating gic frequency property\n");
|
||||||
|
|
||||||
|
of_node_put(node);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user