[PATCH 2/2] of: fdt: reorder fdt_header initialization
Sascha Hauer
s.hauer at pengutronix.de
Fri Nov 8 09:23:43 EST 2013
No functional change, just reorder the initialization of
the different offset/size members of fdt_header in increasing
order to make it easier to read.
Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
drivers/of/fdt.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c
index b136dad..3dc5d47 100644
--- a/drivers/of/fdt.c
+++ b/drivers/of/fdt.c
@@ -408,11 +408,11 @@ void *of_flatten_dtb(struct device_node *node)
nh->tag = cpu_to_fdt32(FDT_END);
fdt.dt_nextofs = dt_next_ofs(fdt.dt_nextofs, sizeof(struct fdt_node_header));
- header.size_dt_strings = cpu_to_fdt32(fdt.str_nextofs);
+ header.off_dt_struct = cpu_to_fdt32(ofs);
header.size_dt_struct = cpu_to_fdt32(fdt.dt_nextofs - ofs);
- header.off_dt_struct = cpu_to_fdt32(ofs);
header.off_dt_strings = cpu_to_fdt32(fdt.dt_nextofs);
+ header.size_dt_strings = cpu_to_fdt32(fdt.str_nextofs);
if (fdt.dt_size - fdt.dt_nextofs < fdt.str_nextofs) {
fdt.dt = memalign_realloc(fdt.dt, fdt.dt_size,
--
1.8.4.rc3
More information about the barebox
mailing list