of: add helper to lookup compatible child node
authorJohan Hovold <johan@kernel.org>
Mon, 27 Aug 2018 08:21:45 +0000 (10:21 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 1 Dec 2018 08:42:54 +0000 (09:42 +0100)
commitc1ede7043d74de0022872921b453d106341fcf93
tree4ed173dba46e6193e0da16bc6d62f4328c87b575
parentc6a4b3c3b81b818dc0138c813fd7656aeb78aa11
of: add helper to lookup compatible child node

[ Upstream commit 36156f9241cb0f9e37d998052873ca7501ad4b36 ]

Add of_get_compatible_child() helper that can be used to lookup
compatible child nodes.

Several drivers currently use of_find_compatible_node() to lookup child
nodes while failing to notice that the of_find_ functions search the
entire tree depth-first (from a given start node) and therefore can
match unrelated nodes. The fact that these functions also drop a
reference to the node they start searching from (e.g. the parent node)
is typically also overlooked, something which can lead to use-after-free
bugs.

Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Rob Herring <robh@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/of/base.c
include/linux/of.h