diff options
author | Gerald Van Baren <vanbaren@cideas.com> | 2007-11-23 19:43:20 -0500 |
---|---|---|
committer | Gerald Van Baren <vanbaren@cideas.com> | 2007-12-07 20:51:24 -0500 |
commit | 28f384b171bbf1fb2dafb1046e6d259a6b2f8714 (patch) | |
tree | b14d642edbe0997c4b17b4c1102c885c80ec49d9 /common | |
parent | 41be969f4957115ed7b1fe8b890bfaee99d7a7a2 (diff) | |
download | u-boot-imx-28f384b171bbf1fb2dafb1046e6d259a6b2f8714.zip u-boot-imx-28f384b171bbf1fb2dafb1046e6d259a6b2f8714.tar.gz u-boot-imx-28f384b171bbf1fb2dafb1046e6d259a6b2f8714.tar.bz2 |
Add spaces around the = in the fdt print format.
Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_fdt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/cmd_fdt.c b/common/cmd_fdt.c index 629c9b4..4639126 100644 --- a/common/cmd_fdt.c +++ b/common/cmd_fdt.c @@ -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); |