mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
c7c0d8df0b
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:
|
||
---|---|---|
.. | ||
call.c | ||
core.c | ||
Kconfig | ||
Makefile | ||
optee_msg.h | ||
optee_private.h | ||
optee_smc.h | ||
rpc.c | ||
shm_pool.c | ||
shm_pool.h | ||
supp.c |