diff options
author | Stefan Roese <sr@denx.de> | 2011-01-10 12:48:00 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2011-01-17 22:55:58 +0100 |
commit | 0c51c245a16c9526763f30c2b120edf9de8da173 (patch) | |
tree | f54d23902023c517fdf8c5a7e8b2137f29218626 /lib/asm-offsets.c | |
parent | c9914404cd56963ef63c5fab171f22473e5a10b0 (diff) | |
download | u-boot-imx-0c51c245a16c9526763f30c2b120edf9de8da173.zip u-boot-imx-0c51c245a16c9526763f30c2b120edf9de8da173.tar.gz u-boot-imx-0c51c245a16c9526763f30c2b120edf9de8da173.tar.bz2 |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/asm-offsets.c b/lib/asm-offsets.c index 6f253a6..c88f5d4 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; } |