Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/61917 )
Change subject: mb/asus/f2a85-m/irq_tables.c: Use ALIGN_UP macro ......................................................................
mb/asus/f2a85-m/irq_tables.c: Use ALIGN_UP macro
Change-Id: I0fbd96f0526425f33fc7cc09523c9798d0666106 Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M src/mainboard/asus/f2a85-m/irq_tables.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/17/61917/1
diff --git a/src/mainboard/asus/f2a85-m/irq_tables.c b/src/mainboard/asus/f2a85-m/irq_tables.c index 6da0e73..1505abc 100644 --- a/src/mainboard/asus/f2a85-m/irq_tables.c +++ b/src/mainboard/asus/f2a85-m/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 <stdint.h> #include <string.h> @@ -36,8 +37,7 @@ 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);