From 0c51c245a16c9526763f30c2b120edf9de8da173 Mon Sep 17 00:00:00 2001
From: Stefan Roese <sr@denx.de>
Date: Mon, 10 Jan 2011 12:48:00 +0100
Subject: [PATCH] Small coding style fix in lib/asm-offsets.c

Signed-off-by: Stefan Roese <sr@denx.de>
Acked-by: Michal Simek <monstr@monstr.eu>
---
 lib/asm-offsets.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/asm-offsets.c b/lib/asm-offsets.c
index 6f253a6362..c88f5d4451 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;
 }
-- 
2.39.5