Skip to content
Snippets Groups Projects
Commit 28f384b1 authored by Gerald Van Baren's avatar Gerald Van Baren
Browse files

Add spaces around the = in the fdt print format.

parent 41be969f
No related branches found
No related tags found
No related merge requests found
......@@ -588,7 +588,7 @@ static int fdt_print(const char *pathp, char *prop, int depth)
printf("%s %s\n", pathp, prop);
return 0;
} else if (len > 0) {
printf("%s=", prop);
printf("%s = ", prop);
print_data (nodep, len);
printf("\n");
return 0;
......@@ -649,7 +649,7 @@ static int fdt_print(const char *pathp, char *prop, int depth)
pathp);
} else {
if (level <= depth) {
printf("%s%s=",
printf("%s%s = ",
&tabs[MAX_LEVEL - level],
pathp);
print_data (nodep, len);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment