printk_foo -> printk(BIOS_FOO, ...)
[coreboot.git] / src / mainboard / asus / a8n_e / irq_tables.c
index 4c9417fdc4e4dd9b135b716b347720be6880a372..eeea8d0c27edfe731cc5f8be2d632479011544e6 100644 (file)
@@ -78,7 +78,7 @@ unsigned long write_pirq_routing_table(unsigned long addr)
        addr &= ~15;
 
        /* This table must be betweeen 0xf0000 & 0x100000. */
-       printk_info("Writing IRQ routing tables to 0x%x...", addr);
+       printk(BIOS_INFO, "Writing IRQ routing tables to 0x%x...", addr);
 
        pirq = (void *)(addr);
        v = (uint8_t *)(addr);
@@ -191,7 +191,7 @@ unsigned long write_pirq_routing_table(unsigned long addr)
        if (sum != pirq->checksum)
                pirq->checksum = sum;
 
-       printk_info("done.\n");
+       printk(BIOS_INFO, "done.\n");
 
        return (unsigned long)pirq_info;
 }