summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2022-09-11 12:09:36 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-09-12 15:29:20 +0000
commit9a657e2b9d6d252e02f8ca28613c5633afd39fec (patch)
treefeb598aba3eb65602396225a9c8c13e17280c100
parent53529b2698ff213f6fdce8135f303222653a48c0 (diff)
downloadcoreboot-9a657e2b9d6d252e02f8ca28613c5633afd39fec.tar.gz
coreboot-9a657e2b9d6d252e02f8ca28613c5633afd39fec.tar.bz2
coreboot-9a657e2b9d6d252e02f8ca28613c5633afd39fec.zip
mb/biostar/a68n_5200/irq_tables.c: Use ALIGN_UP macro
Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Change-Id: I1ac0cc79f8cb13ea11fb32236ed5c9f0a4ab8586 Reviewed-on: https://review.coreboot.org/c/coreboot/+/67511 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
-rw-r--r--src/mainboard/biostar/a68n_5200/irq_tables.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/biostar/a68n_5200/irq_tables.c b/src/mainboard/biostar/a68n_5200/irq_tables.c
index 6d75c05885eb..3417541daa7f 100644
--- a/src/mainboard/biostar/a68n_5200/irq_tables.c
+++ b/src/mainboard/biostar/a68n_5200/irq_tables.c
@@ -1,6 +1,7 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <console/console.h>
+#include <commonlib/bsd/helpers.h>
#include <string.h>
#include <stdint.h>
#include <device/pci_def.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);