dm: ofnode: add ofnode_device_is_compatible() helper
device_is_compatible() takes udevice, but there is no such a helper
that takes ofnode.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
diff --git a/drivers/core/device.c b/drivers/core/device.c
index 1a32956..e048e1a 100644
--- a/drivers/core/device.c
+++ b/drivers/core/device.c
@@ -708,13 +708,7 @@
bool device_is_compatible(struct udevice *dev, const char *compat)
{
- const void *fdt = gd->fdt_blob;
- ofnode node = dev_ofnode(dev);
-
- if (ofnode_is_np(node))
- return of_device_is_compatible(ofnode_to_np(node), compat, NULL, NULL);
- else
- return !fdt_node_check_compatible(fdt, ofnode_to_offset(node), compat);
+ return ofnode_device_is_compatible(dev_ofnode(dev), compat);
}
bool of_machine_is_compatible(const char *compat)