summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2022-09-11 12:07:38 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-09-12 15:28:17 +0000
commit135ab119a29b6cd5a11a424ee439687b8c4b13e7 (patch)
tree047133fd8f4de6288637acbd8733d554ee392f15
parent726bf1806557474a7de57837dd3ba96a45753944 (diff)
downloadcoreboot-135ab119a29b6cd5a11a424ee439687b8c4b13e7.tar.gz
coreboot-135ab119a29b6cd5a11a424ee439687b8c4b13e7.tar.bz2
coreboot-135ab119a29b6cd5a11a424ee439687b8c4b13e7.zip
mb/gizmosphere/*/irq_tables.c: Use ALIGN_UP macro
Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Change-Id: I19412b595b3a1d2026fce5a84ddbd6356abe5a3f Reviewed-on: https://review.coreboot.org/c/coreboot/+/67508 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
-rw-r--r--src/mainboard/gizmosphere/gizmo/irq_tables.c4
-rw-r--r--src/mainboard/gizmosphere/gizmo2/irq_tables.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mainboard/gizmosphere/gizmo/irq_tables.c b/src/mainboard/gizmosphere/gizmo/irq_tables.c
index 398594f828d2..06880eb1074c 100644
--- a/src/mainboard/gizmosphere/gizmo/irq_tables.c
+++ b/src/mainboard/gizmosphere/gizmo/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);
diff --git a/src/mainboard/gizmosphere/gizmo2/irq_tables.c b/src/mainboard/gizmosphere/gizmo2/irq_tables.c
index 398594f828d2..06880eb1074c 100644
--- a/src/mainboard/gizmosphere/gizmo2/irq_tables.c
+++ b/src/mainboard/gizmosphere/gizmo2/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);