summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lib/coreboot_table.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/lib/coreboot_table.c b/src/lib/coreboot_table.c
index c29d3081b5e1..698118c75a83 100644
--- a/src/lib/coreboot_table.c
+++ b/src/lib/coreboot_table.c
@@ -37,9 +37,7 @@ static struct lb_header *lb_table_init(unsigned long addr)
{
struct lb_header *header;
- /* 16 byte align the address */
- addr += 15;
- addr &= ~15;
+ addr = ALIGN_UP(addr, 16);
header = (void *)addr;
header->signature[0] = 'L';