Skip to content
Snippets Groups Projects
Commit 0c51c245 authored by Stefan Roese's avatar Stefan Roese Committed by Wolfgang Denk
Browse files

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


Signed-off-by: default avatarStefan Roese <sr@denx.de>
Acked-by: default avatarMichal Simek <monstr@monstr.eu>
parent c9914404
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment