summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2022-09-11 12:11:18 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-09-12 15:30:19 +0000
commit1335f4bb81fd85b866ba79d6babc7db4664da42e (patch)
treea0efa905b2cbfab4bf49536cf606a902aaae4a26
parentcaefe5c3666f509addb780ffe0d15aee8a2fab4e (diff)
downloadcoreboot-1335f4bb81fd85b866ba79d6babc7db4664da42e.tar.gz
coreboot-1335f4bb81fd85b866ba79d6babc7db4664da42e.tar.bz2
coreboot-1335f4bb81fd85b866ba79d6babc7db4664da42e.zip
mb/jetway/nf81-t56n-lf/irq_tables.c: Use ALIGN_UP macro
Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Change-Id: I86d664c7ebdd8ff8b47b498da7c861c11a80892c Reviewed-on: https://review.coreboot.org/c/coreboot/+/67514 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
-rw-r--r--src/mainboard/jetway/nf81-t56n-lf/irq_tables.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/jetway/nf81-t56n-lf/irq_tables.c b/src/mainboard/jetway/nf81-t56n-lf/irq_tables.c
index e83c0874e52f..2ffea02c8426 100644
--- a/src/mainboard/jetway/nf81-t56n-lf/irq_tables.c
+++ b/src/mainboard/jetway/nf81-t56n-lf/irq_tables.c
@@ -2,6 +2,7 @@
#include <arch/pirq_routing.h>
#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 table on 16 byte boundary. */
- 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);