projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c991440
)
Small coding style fix in lib/asm-offsets.c
author
Stefan Roese
<sr@denx.de>
Mon, 10 Jan 2011 11:48:00 +0000
(12:48 +0100)
committer
Wolfgang 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
patch
|
blob
|
history
diff --git
a/lib/asm-offsets.c
b/lib/asm-offsets.c
index 6f253a6362b360399f2e73ea720c24d54aef21e3..c88f5d445137066f1322ca2704633625c0e7540b 100644
(file)
--- 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;
}