summaryrefslogtreecommitdiff
path: root/tools/imximage.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2015-10-13 08:37:38 -0400
committerTom Rini <trini@konsulko.com>2015-10-13 08:37:38 -0400
commit297faccca2235e359012118495b9b73451d54bb9 (patch)
treef23e413e213e1b8a8bf520c85d96786c487385ab /tools/imximage.h
parentf861f51c4673d35908e4e330a86c81d7d909b51c (diff)
parent61903b759aa336d798da49d884467219796817ff (diff)
downloadu-boot-imx-297faccca2235e359012118495b9b73451d54bb9.zip
u-boot-imx-297faccca2235e359012118495b9b73451d54bb9.tar.gz
u-boot-imx-297faccca2235e359012118495b9b73451d54bb9.tar.bz2
Merge branch 'master' of git://www.denx.de/git/u-boot-imx
Diffstat (limited to 'tools/imximage.h')
-rw-r--r--tools/imximage.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/tools/imximage.h b/tools/imximage.h
index d41c74f..c7b9b5c 100644
--- a/tools/imximage.h
+++ b/tools/imximage.h
@@ -133,10 +133,14 @@ typedef struct {
uint8_t param;
} __attribute__((packed)) write_dcd_command_t;
-typedef struct {
- ivt_header_t header;
+struct dcd_v2_cmd {
write_dcd_command_t write_dcd_command;
dcd_addr_data_t addr_data[MAX_HW_CFG_SIZE_V2];
+};
+
+typedef struct {
+ ivt_header_t header;
+ struct dcd_v2_cmd dcd_cmd;
uint32_t padding[1]; /* end up on an 8-byte boundary */
} dcd_v2_t;