Fix some minor whitespace violations.

This commit is contained in:
Gerald Van Baren 2007-03-31 14:30:53 -04:00
parent 213bf8c822
commit aea03c4e8c
3 changed files with 5 additions and 5 deletions

View File

@ -38,7 +38,7 @@
#include <fdt.h> #include <fdt.h>
#include <libfdt.h> #include <libfdt.h>
#endif #endif
#if defined(CONFIG_OF_FLAT_TREE) #if defined(CONFIG_OF_FLAT_TREE)
#include <ft_build.h> #include <ft_build.h>
#endif #endif

View File

@ -377,12 +377,12 @@ ft_cpu_setup(void *blob, bd_t *bd)
fixup_props[j].prop, bd->bi_enetaddr, 6); fixup_props[j].prop, bd->bi_enetaddr, 6);
} else { } else {
printf("ft_cpu_setup: %s %s has no flag for the value to set\n", printf("ft_cpu_setup: %s %s has no flag for the value to set\n",
fixup_props[j].node, fixup_props[j].node,
fixup_props[j].prop); fixup_props[j].prop);
} }
if (err < 0) if (err < 0)
printf("libfdt: %s %s returned %s\n", printf("libfdt: %s %s returned %s\n",
fixup_props[j].node, fixup_props[j].node,
fixup_props[j].prop, fixup_props[j].prop,
fdt_strerror(err)); fdt_strerror(err));
} }

View File

@ -171,7 +171,7 @@ int fdt_path_offset(const void *fdt, const char *path)
p = q; p = q;
} }
return offset; return offset;
} }
/* /*
@ -240,7 +240,7 @@ struct fdt_property *fdt_get_property(const void *fdt,
if (lenp) if (lenp)
*lenp = len; *lenp = len;
return prop; return prop;
} }
break; break;