summaryrefslogtreecommitdiff
path: root/flattree.c
diff options
context:
space:
mode:
authorDavid Gibson <dgibson@sneetch.(none)>2005-08-25 14:47:20 +1000
committerDavid Gibson <dgibson@sneetch.(none)>2005-08-25 14:47:20 +1000
commitdffc2a8972640dc2d9c9cdf7c83132d93437f6af (patch)
tree5940b0549ff968a7160d12d06a4ab03edb88b632 /flattree.c
parent4ddf7c020c3db2f001987ec2c2a91a030a01377d (diff)
downloaddtc-dffc2a8972640dc2d9c9cdf7c83132d93437f6af.tar.gz
Add a couple of missing cpu_to_be32() writing the version numbers out.
Diffstat (limited to 'flattree.c')
-rw-r--r--flattree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/flattree.c b/flattree.c
index 901d1e2..9d84b19 100644
--- a/flattree.c
+++ b/flattree.c
@@ -298,8 +298,8 @@ static void make_bph(struct boot_param_header *bph,
memset(bph, 0xff, sizeof(*bph));
bph->magic = cpu_to_be32(OF_DT_HEADER);
- bph->version = vi->version;
- bph->last_comp_version = vi->last_comp_version;
+ bph->version = cpu_to_be32(vi->version);
+ bph->last_comp_version = cpu_to_be32(vi->last_comp_version);
/* Reserve map should be doubleword aligned */
reserve_off = ALIGN(vi->hdr_size, 8);