]> git.sur5r.net Git - u-boot/commitdiff
Small coding style fix in lib/asm-offsets.c
authorStefan Roese <sr@denx.de>
Mon, 10 Jan 2011 11:48:00 +0000 (12:48 +0100)
committerWolfgang Denk <wd@denx.de>
Mon, 17 Jan 2011 21:55:58 +0000 (22:55 +0100)
Signed-off-by: Stefan Roese <sr@denx.de>
Acked-by: Michal Simek <monstr@monstr.eu>
lib/asm-offsets.c

index 6f253a6362b360399f2e73ea720c24d54aef21e3..c88f5d445137066f1322ca2704633625c0e7540b 100644 (file)
@@ -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;
 }