Browse Source

Merge branch 'dt/linus' into HEAD

Rob Herring 6 years ago
parent
commit
362ce2b8e5
1 changed files with 3 additions and 0 deletions
  1. 3 0
      drivers/of/base.c

+ 3 - 0
drivers/of/base.c

@@ -140,6 +140,9 @@ void of_populate_phandle_cache(void)
 		if (np->phandle && np->phandle != OF_PHANDLE_ILLEGAL)
 			phandles++;
 
+	if (!phandles)
+		goto out;
+
 	cache_entries = roundup_pow_of_two(phandles);
 	phandle_cache_mask = cache_entries - 1;