From: Frank Rowand <frank.rowand@xxxxxxxx> struct device_node full_name has been changed to include the basename instead of the full path. kbasename() is no longer needed to extract the basename from full_name. Signed-off-by: Frank Rowand <frank.rowand@xxxxxxxx> --- drivers/of/base.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/of/base.c b/drivers/of/base.c index ad28de96e13f..926d08b8674d 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c @@ -691,8 +691,8 @@ struct device_node *__of_find_node_by_path(struct device_node *parent, return NULL; __for_each_child_of_node(parent, child) { - const char *name = kbasename(child->full_name); - if (strncmp(path, name, len) == 0 && (strlen(name) == len)) + if (strncmp(path, child->full_name, len) == 0 && + (strlen(child->full_name) == len)) return child; } return NULL; -- Frank Rowand <frank.rowand@xxxxxxxx> -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html