mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
fdda0a6adc
Add an of_node_put when a tested device node is not available.
The semantic patch that fixes this problem is as follows
(http://coccinelle.lip6.fr):
// <smpl>
@@
identifier f;
local idexpression e;
expression x;
@@
e = f(...);
... when != of_node_put(e)
when != x = e
when != e = x
when any
if (<+...of_device_is_available(e)...+>) {
... when != of_node_put(e)
(
return e;
|
+ of_node_put(e);
return ...;
)
}
// </smpl>
Fixes:
|
||
---|---|---|
.. | ||
Kconfig | ||
Makefile | ||
meson-canvas.c | ||
meson-clk-measure.c | ||
meson-gx-pwrc-vpu.c | ||
meson-gx-socinfo.c | ||
meson-mx-socinfo.c |