Merge remote-tracking branch 'grant/devicetree/next' into for-next
This commit is contained in:
commit
3c3c8e3618
|
@ -30,11 +30,6 @@ static struct selftest_results {
|
||||||
int failed;
|
int failed;
|
||||||
} selftest_results;
|
} selftest_results;
|
||||||
|
|
||||||
#define NO_OF_NODES 3
|
|
||||||
static struct device_node *nodes[NO_OF_NODES];
|
|
||||||
static int last_node_index;
|
|
||||||
static bool selftest_live_tree;
|
|
||||||
|
|
||||||
#define selftest(result, fmt, ...) ({ \
|
#define selftest(result, fmt, ...) ({ \
|
||||||
bool failed = !(result); \
|
bool failed = !(result); \
|
||||||
if (failed) { \
|
if (failed) { \
|
||||||
|
@ -833,13 +828,6 @@ static int attach_node_and_children(struct device_node *np)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Children of the root need to be remembered for removal */
|
|
||||||
if (np->parent == of_root) {
|
|
||||||
if (WARN_ON(last_node_index >= NO_OF_NODES))
|
|
||||||
return -EINVAL;
|
|
||||||
nodes[last_node_index++] = np;
|
|
||||||
}
|
|
||||||
|
|
||||||
child = np->child;
|
child = np->child;
|
||||||
np->child = NULL;
|
np->child = NULL;
|
||||||
|
|
||||||
|
@ -902,10 +890,7 @@ static int __init selftest_data_add(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!of_root) {
|
if (!of_root) {
|
||||||
/* enabling flag for removing nodes */
|
|
||||||
selftest_live_tree = true;
|
|
||||||
of_root = selftest_data_node;
|
of_root = selftest_data_node;
|
||||||
|
|
||||||
for_each_of_allnodes(np)
|
for_each_of_allnodes(np)
|
||||||
__of_attach_node_sysfs(np);
|
__of_attach_node_sysfs(np);
|
||||||
of_aliases = of_find_node_by_path("/aliases");
|
of_aliases = of_find_node_by_path("/aliases");
|
||||||
|
|
Loading…
Reference in New Issue