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:
parent
c9914404cd
commit
0c51c245a1
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user