diff options
-rw-r--r-- | drivers/of/base.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/of/base.c b/drivers/of/base.c index 293ed4b687ba..2305dc0382bc 100644 --- a/drivers/of/base.c +++ b/drivers/of/base.c | |||
@@ -1021,6 +1021,9 @@ struct device_node *of_find_node_by_phandle(phandle handle) | |||
1021 | struct device_node *np; | 1021 | struct device_node *np; |
1022 | unsigned long flags; | 1022 | unsigned long flags; |
1023 | 1023 | ||
1024 | if (!handle) | ||
1025 | return NULL; | ||
1026 | |||
1024 | raw_spin_lock_irqsave(&devtree_lock, flags); | 1027 | raw_spin_lock_irqsave(&devtree_lock, flags); |
1025 | for (np = of_allnodes; np; np = np->allnext) | 1028 | for (np = of_allnodes; np; np = np->allnext) |
1026 | if (np->phandle == handle) | 1029 | if (np->phandle == handle) |