Author: stepan Date: Mon Feb 22 08:28:06 2010 New Revision: 5137 URL: http://tracker.coreboot.org/trac/coreboot/changeset/5137
Log: don't call verify_copy_pirq_routing_table() if it's not there. Signed-off-by: Stefan Reinauer <[email protected]> Acked-by: Stefan Reinauer <[email protected]> Modified: trunk/src/arch/i386/boot/pirq_routing.c Modified: trunk/src/arch/i386/boot/pirq_routing.c ============================================================================== --- trunk/src/arch/i386/boot/pirq_routing.c Mon Feb 22 07:09:43 2010 (r5136) +++ trunk/src/arch/i386/boot/pirq_routing.c Mon Feb 22 08:28:06 2010 (r5137) @@ -93,7 +93,9 @@ 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; } -- coreboot mailing list: [email protected] http://www.coreboot.org/mailman/listinfo/coreboot

