mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 14:41:31 +00:00
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
1 changed files with 2 additions and 2 deletions
|
@ -588,7 +588,7 @@ static int fdt_print(const char *pathp, char *prop, int depth)
|
||||||
printf("%s %s\n", pathp, prop);
|
printf("%s %s\n", pathp, prop);
|
||||||
return 0;
|
return 0;
|
||||||
} else if (len > 0) {
|
} else if (len > 0) {
|
||||||
printf("%s=", prop);
|
printf("%s = ", prop);
|
||||||
print_data (nodep, len);
|
print_data (nodep, len);
|
||||||
printf("\n");
|
printf("\n");
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -649,7 +649,7 @@ static int fdt_print(const char *pathp, char *prop, int depth)
|
||||||
pathp);
|
pathp);
|
||||||
} else {
|
} else {
|
||||||
if (level <= depth) {
|
if (level <= depth) {
|
||||||
printf("%s%s=",
|
printf("%s%s = ",
|
||||||
&tabs[MAX_LEVEL - level],
|
&tabs[MAX_LEVEL - level],
|
||||||
pathp);
|
pathp);
|
||||||
print_data (nodep, len);
|
print_data (nodep, len);
|
||||||
|
|
Loading…
Add table
Reference in a new issue