1 #include <linux/string.h>
3 #include <linux/slab.h>
6 #include "of_helpers.h"
9 * pseries_of_derive_parent - basically like dirname(1)
10 * @path: the full_name of a node to be added to the tree
12 * Returns the node which should be the parent of the node
13 * described by path. E.g., for path = "/foo/bar", returns
14 * the node with full_name = "/foo".
16 struct device_node
*pseries_of_derive_parent(const char *path
)
18 struct device_node
*parent
;
19 char *parent_path
= "/";
22 /* We do not want the trailing '/' character */
23 tail
= kbasename(path
) - 1;
25 /* reject if path is "/" */
26 if (!strcmp(path
, "/"))
27 return ERR_PTR(-EINVAL
);
30 parent_path
= kstrndup(path
, tail
- path
, GFP_KERNEL
);
32 return ERR_PTR(-ENOMEM
);
34 parent
= of_find_node_by_path(parent_path
);
35 if (strcmp(parent_path
, "/"))
37 return parent
? parent
: ERR_PTR(-EINVAL
);