summaryrefslogtreecommitdiff
path: root/src/mainboard/hp/pavilion_m6_1035dx
diff options
context:
space:
mode:
authorElyes Haouas <ehaouas@noos.fr>2022-09-11 12:08:29 +0200
committerFelix Held <felix-coreboot@felixheld.de>2022-09-12 15:28:41 +0000
commitf3f56a2567cc11bec616509d9737fbad3a139e7e (patch)
treee2db2f11fc05ffae78b12678e3fe7a36f40db299 /src/mainboard/hp/pavilion_m6_1035dx
parent135ab119a29b6cd5a11a424ee439687b8c4b13e7 (diff)
mb/hp/*/irq_tables.c: Use ALIGN_UP macro
Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Change-Id: I3ba6a8dfb966038d63cfdeceb1e37eeb1a37343b Reviewed-on: https://review.coreboot.org/c/coreboot/+/67509 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/mainboard/hp/pavilion_m6_1035dx')
-rw-r--r--src/mainboard/hp/pavilion_m6_1035dx/irq_tables.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/hp/pavilion_m6_1035dx/irq_tables.c b/src/mainboard/hp/pavilion_m6_1035dx/irq_tables.c
index 0baf079786..36caea97de 100644
--- a/src/mainboard/hp/pavilion_m6_1035dx/irq_tables.c
+++ b/src/mainboard/hp/pavilion_m6_1035dx/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 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);