projects
/
linux-block.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d0a70a
)
of: make PowerMac cache node search conditional on CONFIG_PPC_PMAC
author
Rob Herring
<robh@kernel.org>
Mon, 27 Aug 2018 14:50:09 +0000
(09:50 -0500)
committer
Rob Herring
<robh@kernel.org>
Fri, 7 Sep 2018 16:04:41 +0000
(11:04 -0500)
Cache nodes under the cpu node(s) is PowerMac specific according to the
comment above, so make the code enforce that.
Signed-off-by: Rob Herring <robh@kernel.org>
drivers/of/base.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/of/base.c
b/drivers/of/base.c
index 9095b8290150c5bd2b8da3916d9f6c9243f24c56..a055cd1ef96d7c4f847d19b9e1a4c52c9bb92022 100644
(file)
--- a/
drivers/of/base.c
+++ b/
drivers/of/base.c
@@
-2010,7
+2010,7
@@
struct device_node *of_find_next_cache_node(const struct device_node *np)
/* OF on pmac has nodes instead of properties named "l2-cache"
* beneath CPU nodes.
*/
- if (!strcmp(np->type, "cpu"))
+ if (
IS_ENABLED(CONFIG_PPC_PMAC) &&
!strcmp(np->type, "cpu"))
for_each_child_of_node(np, child)
if (!strcmp(child->type, "cache"))
return child;