summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@openbios.org>2004-01-26 10:54:44 +0000
committerStefan Reinauer <stepan@openbios.org>2004-01-26 10:54:44 +0000
commitabf9fea4a0c975f56190d061efef9ddeb6b84f81 (patch)
treee3eefc434cd6c5e8fcfaf403fdec659c43189885 /src
parent36fdcb8e2bd1e815b385ead72bd936458eae0d7b (diff)
downloadcoreboot-abf9fea4a0c975f56190d061efef9ddeb6b84f81.tar.xz
unify debug messages, fix typo
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1356 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src')
-rw-r--r--src/arch/i386/boot/pirq_routing.c4
1 files changed, 2 insertions, 2 deletions
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