From: Gerald Van Baren Date: Sat, 24 Nov 2007 00:43:20 +0000 (-0500) Subject: Add spaces around the = in the fdt print format. X-Git-Tag: v1.3.2-rc1~110^2~6 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;ds=sidebyside;h=28f384b171bbf1fb2dafb1046e6d259a6b2f8714;p=u-boot Add spaces around the = in the fdt print format. Signed-off-by: Gerald Van Baren --- diff --git a/common/cmd_fdt.c b/common/cmd_fdt.c index 629c9b413e..4639126536 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);