Browse Source

x86: use dev_printk in quirk message

This patch changes a VIA PCI quirk to use dev_info() rather than printk().

Signed-off-by: Bjorn Helgaas <bjorn.helgaas@hp.com>
Signed-off-by: Jesse Barnes <jbarnes@virtuousgek.org>
Bjorn Helgaas 16 years ago
parent
commit
13bf757669
1 changed files with 1 additions and 2 deletions
  1. 1 2
      arch/x86/kernel/pci-dma.c

+ 1 - 2
arch/x86/kernel/pci-dma.c

@@ -290,8 +290,7 @@ fs_initcall(pci_iommu_init);
 static __devinit void via_no_dac(struct pci_dev *dev)
 static __devinit void via_no_dac(struct pci_dev *dev)
 {
 {
 	if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI && forbid_dac == 0) {
 	if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI && forbid_dac == 0) {
-		printk(KERN_INFO
-			"PCI: VIA PCI bridge detected. Disabling DAC.\n");
+		dev_info(&dev->dev, "disabling DAC on VIA PCI bridge\n");
 		forbid_dac = 1;
 		forbid_dac = 1;
 	}
 	}
 }
 }