mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
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
1 changed files with 2 additions and 2 deletions
|
@ -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 a new issue