From 0c51c245a16c9526763f30c2b120edf9de8da173 Mon Sep 17 00:00:00 2001 From: Stefan Roese Date: Mon, 10 Jan 2011 12:48:00 +0100 Subject: Small coding style fix in lib/asm-offsets.c Signed-off-by: Stefan Roese Acked-by: Michal Simek --- lib/asm-offsets.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/asm-offsets.c') 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; } -- cgit v1.2.1