From 159b01213202f33e661f9125287b2b3056019dbf Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Mon, 22 Feb 2010 07:28:06 +0000 Subject: don't call verify_copy_pirq_routing_table() if it's not there. Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5137 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/arch/i386/boot/pirq_routing.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/arch') diff --git a/src/arch/i386/boot/pirq_routing.c b/src/arch/i386/boot/pirq_routing.c index 78e1dd1806..963df5cd78 100644 --- a/src/arch/i386/boot/pirq_routing.c +++ b/src/arch/i386/boot/pirq_routing.c @@ -93,7 +93,9 @@ unsigned long copy_pirq_routing_table(unsigned long addr) printk_info("Copying Interrupt Routing Table to 0x%08lx... ", addr); memcpy((void *)addr, &intel_irq_routing_table, intel_irq_routing_table.size); printk_info("done.\n"); +#if CONFIG_DEBUG verify_copy_pirq_routing_table(addr); +#endif pirq_routing_irqs(addr); return addr + intel_irq_routing_table.size; } -- cgit v1.2.3