From abf9fea4a0c975f56190d061efef9ddeb6b84f81 Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Mon, 26 Jan 2004 10:54:44 +0000 Subject: unify debug messages, fix typo git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1356 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/arch/i386/boot/pirq_routing.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/arch/i386/boot') diff --git a/src/arch/i386/boot/pirq_routing.c b/src/arch/i386/boot/pirq_routing.c index 3f17bd1aab..6c7f640ca3 100644 --- a/src/arch/i386/boot/pirq_routing.c +++ b/src/arch/i386/boot/pirq_routing.c @@ -70,14 +70,14 @@ int verify_copy_pirq_routing_table(unsigned long addr) rt_curr = (uint8_t*)addr; rt_orig = (uint8_t*)&intel_irq_routing_table; - printk_info("Verifing priq routing tables copy at 0x%x...", addr); + printk_info("Verifing copy of IRQ routing tables at 0x%x...", addr); for (i = 0; i < intel_irq_routing_table.size; i++) { if (*(rt_curr + i) != *(rt_orig + i)) { printk_info("failed\n"); return -1; } } - printk_info("succeed\n"); + printk_info("done\n"); return 0; } #else -- cgit v1.2.3