Commit 0c51c245a16c9526763f30c2b120edf9de8da173

Authored by Stefan Roese
Committed by Wolfgang Denk
1 parent c9914404cd

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

Signed-off-by: Stefan Roese <sr@denx.de>
Acked-by: Michal Simek <monstr@monstr.eu>

Showing 1 changed file with 2 additions and 2 deletions Side-by-side Diff

... ... @@ -23,10 +23,10 @@
23 23 {
24 24 /* Round up to make sure size gives nice stack alignment */
25 25 DEFINE(GENERATED_GBL_DATA_SIZE,
26   - (sizeof(struct global_data)+15) & ~15);
  26 + (sizeof(struct global_data) + 15) & ~15);
27 27  
28 28 DEFINE(GENERATED_BD_INFO_SIZE,
29   - (sizeof(struct bd_info)+15) & ~15);
  29 + (sizeof(struct bd_info) + 15) & ~15);
30 30  
31 31 return 0;
32 32 }