summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2022-09-11 12:10:04 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-09-12 15:29:36 +0000
commitdceb2ff95ec53247e9a45b4985fc9d91040c778b (patch)
tree15df05fd0e975a262908dcc289921ff0ab3a72da
parent9a657e2b9d6d252e02f8ca28613c5633afd39fec (diff)
downloadcoreboot-dceb2ff95ec53247e9a45b4985fc9d91040c778b.tar.gz
coreboot-dceb2ff95ec53247e9a45b4985fc9d91040c778b.tar.bz2
coreboot-dceb2ff95ec53247e9a45b4985fc9d91040c778b.zip
mb/elmex/pcm205400/irq_tables.c: Use ALIGN_UP macro
Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Change-Id: Ibd155f6ec39cd6b4e5faee2eb63264eb90e70294 Reviewed-on: https://review.coreboot.org/c/coreboot/+/67512 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
-rw-r--r--src/mainboard/elmex/pcm205400/irq_tables.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/elmex/pcm205400/irq_tables.c b/src/mainboard/elmex/pcm205400/irq_tables.c
index 398594f828d2..06880eb1074c 100644
--- a/src/mainboard/elmex/pcm205400/irq_tables.c
+++ b/src/mainboard/elmex/pcm205400/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);