unify debug messages, fix typo

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1356 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Stefan Reinauer 2004-01-26 10:54:44 +00:00
parent 36fdcb8e2b
commit abf9fea4a0
1 changed files with 2 additions and 2 deletions

View File

@ -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