diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2009-04-15 10:52:49 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2009-04-15 10:52:49 +0000 |
commit | d086e5d966da9e2a3d0dfb7d4e388e271ff2d51d (patch) | |
tree | af650e10288d6243a6502528286265970fc2ed54 /util/flashrom/cbtable.c | |
parent | 82144571adb315197ded9d6f3ada29a86637117c (diff) |
Some coding style and consistency fixes (trivial).
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4117 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/flashrom/cbtable.c')
-rw-r--r-- | util/flashrom/cbtable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/flashrom/cbtable.c b/util/flashrom/cbtable.c index 4aa260bc03..96b5d96da9 100644 --- a/util/flashrom/cbtable.c +++ b/util/flashrom/cbtable.c @@ -207,7 +207,7 @@ int coreboot_init(void) (((char *)lb_table) + lb_table->header_bytes); if (forward->tag == LB_TAG_FORWARD) { start = forward->forward; - start &= ~(getpagesize()-1); + start &= ~(getpagesize() - 1); physunmap(table_area, BYTES_TO_MAP); table_area = physmap("high tables", start, BYTES_TO_MAP); lb_table = find_lb_table(table_area, 0x00000, 0x1000); |