summaryrefslogtreecommitdiff
path: root/drivers/core
diff options
context:
space:
mode:
authorPatrick Delaunay <patrick.delaunay@foss.st.com>2022-05-17 15:37:05 +0300
committerTom Rini <trini@konsulko.com>2022-06-07 01:01:21 +0300
commitbc8e09811e248287d1964ec6bba60c56235a23f2 (patch)
tree2055a9667be18c00326c98041d03fe1de1660f50 /drivers/core
parent87b0af9317cb4105f3f29cb0a4c28c7cd87ea65f (diff)
downloadu-boot-bc8e09811e248287d1964ec6bba60c56235a23f2.tar.xz
dm: core: convert of_machine_is_compatible to livetree
Replace in the function of_machine_is_compatible(), the used API fdt_node_check_compatible() by ofnode_device_is_compatible() to support a live tree. Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com>
Diffstat (limited to 'drivers/core')
-rw-r--r--drivers/core/device.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/core/device.c b/drivers/core/device.c
index 3ab2583df3..3199d6a1b7 100644
--- a/drivers/core/device.c
+++ b/drivers/core/device.c
@@ -1125,9 +1125,7 @@ bool device_is_compatible(const struct udevice *dev, const char *compat)
bool of_machine_is_compatible(const char *compat)
{
- const void *fdt = gd->fdt_blob;
-
- return !fdt_node_check_compatible(fdt, 0, compat);
+ return ofnode_device_is_compatible(ofnode_root(), compat);
}
int dev_disable_by_path(const char *path)