
21 Dec
2010
21 Dec
'10
7:12 p.m.
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@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