printk_foo -> printk(BIOS_FOO, ...)
[coreboot.git] / src / southbridge / intel / i82801gx / i82801gx_usb.c
index 2803f9cdefec468b21e4d4216c5b871b206031b7..00fddf7c65d6d7ee55f7d987b04539aa70def43f 100644 (file)
@@ -30,7 +30,7 @@ static void usb_init(struct device *dev)
        u8 reg8;
 
        /* USB Specification says the device must be Bus Master */
-       printk_debug("UHCI: Setting up controller.. ");
+       printk(BIOS_DEBUG, "UHCI: Setting up controller.. ");
 
        reg32 = pci_read_config32(dev, PCI_COMMAND);
        pci_write_config32(dev, PCI_COMMAND, reg32 | PCI_COMMAND_MASTER);
@@ -43,7 +43,7 @@ static void usb_init(struct device *dev)
        reg8 |= (1 << 0);
        pci_write_config8(dev, 0xca, reg8);
 
-       printk_debug("done.\n");
+       printk(BIOS_DEBUG, "done.\n");
 }
 
 static void usb_set_subsystem(device_t dev, unsigned vendor, unsigned device)