diff options
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); |