Small coding style fix in lib/asm-offsets.c

Signed-off-by: Stefan Roese <sr@denx.de>
Acked-by: Michal Simek <monstr@monstr.eu>
This commit is contained in:
Stefan Roese 2011-01-10 12:48:00 +01:00 committed by Wolfgang Denk
parent c9914404cd
commit 0c51c245a1
1 changed files with 2 additions and 2 deletions

View File

@ -23,10 +23,10 @@ int main(void)
{
/* Round up to make sure size gives nice stack alignment */
DEFINE(GENERATED_GBL_DATA_SIZE,
(sizeof(struct global_data)+15) & ~15);
(sizeof(struct global_data) + 15) & ~15);
DEFINE(GENERATED_BD_INFO_SIZE,
(sizeof(struct bd_info)+15) & ~15);
(sizeof(struct bd_info) + 15) & ~15);
return 0;
}