aboutsummaryrefslogtreecommitdiff
path: root/lib/asm-offsets.c
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2011-01-10 12:48:00 +0100
committerWolfgang Denk <wd@denx.de>2011-01-17 22:55:58 +0100
commit0c51c245a16c9526763f30c2b120edf9de8da173 (patch)
treef54d23902023c517fdf8c5a7e8b2137f29218626 /lib/asm-offsets.c
parentc9914404cd56963ef63c5fab171f22473e5a10b0 (diff)
Small coding style fix in lib/asm-offsets.c
Signed-off-by: Stefan Roese <sr@denx.de> Acked-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'lib/asm-offsets.c')
-rw-r--r--lib/asm-offsets.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/asm-offsets.c b/lib/asm-offsets.c
index 6f253a636..c88f5d445 100644
--- a/lib/asm-offsets.c
+++ b/lib/asm-offsets.c
@@ -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;
}