summaryrefslogtreecommitdiffstats
path: root/src/mainboard/amd/thatcher/irq_tables.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/amd/thatcher/irq_tables.c')
-rw-r--r--src/mainboard/amd/thatcher/irq_tables.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/amd/thatcher/irq_tables.c b/src/mainboard/amd/thatcher/irq_tables.c
index 60ac2c0d3d71..4f239948ca52 100644
--- a/src/mainboard/amd/thatcher/irq_tables.c
+++ b/src/mainboard/amd/thatcher/irq_tables.c
@@ -1,6 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <console/console.h>
+#include <commonlib/bsd/helpers.h>
#include <device/pci_def.h>
#include <string.h>
#include <stdint.h>
@@ -36,8 +37,7 @@ unsigned long write_pirq_routing_table(unsigned long addr)
int i;
/* Align the table to be 16 byte aligned. */
- addr += 15;
- addr &= ~15;
+ addr = ALIGN_UP(addr, 16);
/* This table must be between 0xf0000 & 0x100000 */
printk(BIOS_INFO, "Writing IRQ routing tables to 0x%lx...", addr);