aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of/base.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/of/base.c')
-rw-r--r--drivers/of/base.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/drivers/of/base.c b/drivers/of/base.c
index 0a8aeb8523fe..8f165b112e03 100644
--- a/drivers/of/base.c
+++ b/drivers/of/base.c
@@ -714,16 +714,12 @@ static struct device_node *__of_find_node_by_path(struct device_node *parent,
714 const char *path) 714 const char *path)
715{ 715{
716 struct device_node *child; 716 struct device_node *child;
717 int len = strchrnul(path, '/') - path; 717 int len;
718 int term;
719 718
719 len = strcspn(path, "/:");
720 if (!len) 720 if (!len)
721 return NULL; 721 return NULL;
722 722
723 term = strchrnul(path, ':') - path;
724 if (term < len)
725 len = term;
726
727 __for_each_child_of_node(parent, child) { 723 __for_each_child_of_node(parent, child) {
728 const char *name = strrchr(child->full_name, '/'); 724 const char *name = strrchr(child->full_name, '/');
729 if (WARN(!name, "malformed device_node %s\n", child->full_name)) 725 if (WARN(!name, "malformed device_node %s\n", child->full_name))
@@ -768,8 +764,12 @@ struct device_node *of_find_node_opts_by_path(const char *path, const char **opt
768 764
769 /* The path could begin with an alias */ 765 /* The path could begin with an alias */
770 if (*path != '/') { 766 if (*path != '/') {
771 char *p = strchrnul(path, '/'); 767 int len;
772 int len = separator ? separator - path : p - path; 768 const char *p = separator;
769
770 if (!p)
771 p = strchrnul(path, '/');
772 len = p - path;
773 773
774 /* of_aliases must not be NULL */ 774 /* of_aliases must not be NULL */
775 if (!of_aliases) 775 if (!of_aliases)
@@ -794,6 +794,8 @@ struct device_node *of_find_node_opts_by_path(const char *path, const char **opt
794 path++; /* Increment past '/' delimiter */ 794 path++; /* Increment past '/' delimiter */
795 np = __of_find_node_by_path(np, path); 795 np = __of_find_node_by_path(np, path);
796 path = strchrnul(path, '/'); 796 path = strchrnul(path, '/');
797 if (separator && separator < path)
798 break;
797 } 799 }
798 raw_spin_unlock_irqrestore(&devtree_lock, flags); 800 raw_spin_unlock_irqrestore(&devtree_lock, flags);
799 return np; 801 return np;