Add a couple of missing cpu_to_be32() writing the version numbers out.
diff --git a/flattree.c b/flattree.c
index 901d1e2..9d84b19 100644
--- a/flattree.c
+++ b/flattree.c
@@ -298,8 +298,8 @@
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);