|
@@ -738,9 +738,12 @@ int __init of_scan_flat_dt(int (*it)(unsigned long node,
|
|
const char *pathp;
|
|
const char *pathp;
|
|
int offset, rc = 0, depth = -1;
|
|
int offset, rc = 0, depth = -1;
|
|
|
|
|
|
- for (offset = fdt_next_node(blob, -1, &depth);
|
|
|
|
- offset >= 0 && depth >= 0 && !rc;
|
|
|
|
- offset = fdt_next_node(blob, offset, &depth)) {
|
|
|
|
|
|
+ if (!blob)
|
|
|
|
+ return 0;
|
|
|
|
+
|
|
|
|
+ for (offset = fdt_next_node(blob, -1, &depth);
|
|
|
|
+ offset >= 0 && depth >= 0 && !rc;
|
|
|
|
+ offset = fdt_next_node(blob, offset, &depth)) {
|
|
|
|
|
|
pathp = fdt_get_name(blob, offset, NULL);
|
|
pathp = fdt_get_name(blob, offset, NULL);
|
|
if (*pathp == '/')
|
|
if (*pathp == '/')
|