summaryrefslogtreecommitdiff
path: root/common/cmd_fdt.c
diff options
context:
space:
mode:
authorWolfgang Denk <wd@denx.de>2007-12-27 00:22:24 +0100
committerWolfgang Denk <wd@denx.de>2007-12-27 00:22:24 +0100
commitbd878eb024bf9cb351c9ce66db63558de2d0e395 (patch)
tree6235c6e37a66e07471448598e8e0d16a78dbc678 /common/cmd_fdt.c
parent467bcee11fe26ad422f2de971aa70866079870f2 (diff)
parentc01b17dd856fa120b2970f50d9598546a4927ec3 (diff)
downloadu-boot-imx-bd878eb024bf9cb351c9ce66db63558de2d0e395.zip
u-boot-imx-bd878eb024bf9cb351c9ce66db63558de2d0e395.tar.gz
u-boot-imx-bd878eb024bf9cb351c9ce66db63558de2d0e395.tar.bz2
Merge branch 'testing' of git://www.denx.de/git/u-boot-fdt
Diffstat (limited to 'common/cmd_fdt.c')
-rw-r--r--common/cmd_fdt.c4
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);