summaryrefslogtreecommitdiff
path: root/include/image.h
diff options
context:
space:
mode:
authorTom Rini <trini@ti.com>2013-01-08 08:28:27 -0700
committerTom Rini <trini@ti.com>2013-01-08 14:26:42 -0700
commit91c038f087d7f643c85609897af3710d5f8b42a9 (patch)
treee96b3c73031aafdd000a253e6dcf5ae6966e8c65 /include/image.h
parente56cdd778ca08fc8c32ffc3ddebbb6102519f344 (diff)
parent7528cf5f016b5b8b8b12b373f6f31a10bf89233d (diff)
downloadu-boot-imx-91c038f087d7f643c85609897af3710d5f8b42a9.zip
u-boot-imx-91c038f087d7f643c85609897af3710d5f8b42a9.tar.gz
u-boot-imx-91c038f087d7f643c85609897af3710d5f8b42a9.tar.bz2
Merge branch 'master' of git://git.denx.de/u-boot-arm
Diffstat (limited to 'include/image.h')
-rw-r--r--include/image.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/image.h b/include/image.h
index b958b18..f5adc50 100644
--- a/include/image.h
+++ b/include/image.h
@@ -179,6 +179,9 @@
#define IH_MAGIC 0x27051956 /* Image Magic Number */
#define IH_NMLEN 32 /* Image Name Length */
+/* Reused from common.h */
+#define ROUND(a, b) (((a) + (b) - 1) & ~((b) - 1))
+
/*
* Legacy format image header,
* all data in network byte order (aka natural aka bigendian).