diff options
author | Simon Glass <sjg@chromium.org> | 2013-05-07 06:11:49 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-05-14 15:37:24 -0400 |
commit | 816cb037adf94ead77593812ccd3244d506175fa (patch) | |
tree | 67c099913fcc366a4a20fb8a73511c321c003c4a /tools/aisimage.c | |
parent | e9c8b445516e18eb900eba609e211310b25bee03 (diff) | |
download | u-boot-imx-816cb037adf94ead77593812ccd3244d506175fa.zip u-boot-imx-816cb037adf94ead77593812ccd3244d506175fa.tar.gz u-boot-imx-816cb037adf94ead77593812ccd3244d506175fa.tar.bz2 |
mkimage: Move ARRAY_SIZE to header file
Move this definition from aisimage.c to mkimage.h so that it is available
more widely.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Marek Vasut <marex@denx.de>
Diffstat (limited to 'tools/aisimage.c')
-rw-r--r-- | tools/aisimage.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/aisimage.c b/tools/aisimage.c index c645708..659df8c 100644 --- a/tools/aisimage.c +++ b/tools/aisimage.c @@ -32,7 +32,6 @@ #define WORD_ALIGN0 4 #define WORD_ALIGN(len) (((len)+WORD_ALIGN0-1) & ~(WORD_ALIGN0-1)) #define MAX_CMD_BUFFER 4096 -#define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0])) static uint32_t ais_img_size; |