[U-Boot] [PATCH 2/3] Autogenerate GENERATED_BD_INFO_SIZE
Michal Simek
monstr at monstr.eu
Tue Dec 21 19:12:57 CET 2010
GENERATED_BD_INFO_SIZE represent sizeof bd_info structure
which is used across architectures.
This value can be used in assembler files and macros.
Signed-off-by: Michal Simek <monstr at monstr.eu>
---
lib/asm-offsets.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/lib/asm-offsets.c b/lib/asm-offsets.c
index f1af7e2..8aba391 100644
--- a/lib/asm-offsets.c
+++ b/lib/asm-offsets.c
@@ -24,6 +24,7 @@ int main (void)
/* Round up to make sure size gives nice stack alignment */
DEFINE (GENERATED_GBL_DATA_SIZE,
(sizeof (struct global_data) + 15) & ~15);
+ DEFINE (GENERATED_BD_INFO_SIZE, (sizeof (struct bd_info) + 15) & ~15);
return 0;
}
--
1.5.5.6
More information about the U-Boot
mailing list