9
0
Fork 0

of: fdt: reorder fdt_header initialization

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@pengutronix.de>
This commit is contained in:
Sascha Hauer 2013-11-08 15:20:54 +01:00
parent c9a86c5c02
commit 7c1091bd58
1 changed files with 2 additions and 2 deletions

View File

@ -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,