Add spaces around the = in the fdt print format.
Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
This commit is contained in:
parent
41be969f49
commit
28f384b171
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user