diff options
author | Bjorn Helgaas <bjorn.helgaas@hp.com> | 2009-02-24 12:38:22 -0500 |
---|---|---|
committer | Jesse Barnes <jbarnes@virtuousgeek.org> | 2009-03-20 13:48:10 -0400 |
commit | 13bf75766966e1bcc71fae536988caec312eef8f (patch) | |
tree | 69e03321e0cb4f1230ab72e77de69170db7996a0 /arch | |
parent | 998dd7c719f62dcfa91d7bf7f4eb9c160e03d817 (diff) |
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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/kernel/pci-dma.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/x86/kernel/pci-dma.c b/arch/x86/kernel/pci-dma.c index b25428533141..022833bb9ff1 100644 --- a/arch/x86/kernel/pci-dma.c +++ b/arch/x86/kernel/pci-dma.c | |||
@@ -290,8 +290,7 @@ fs_initcall(pci_iommu_init); | |||
290 | static __devinit void via_no_dac(struct pci_dev *dev) | 290 | static __devinit void via_no_dac(struct pci_dev *dev) |
291 | { | 291 | { |
292 | if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI && forbid_dac == 0) { | 292 | if ((dev->class >> 8) == PCI_CLASS_BRIDGE_PCI && forbid_dac == 0) { |
293 | printk(KERN_INFO | 293 | dev_info(&dev->dev, "disabling DAC on VIA PCI bridge\n"); |
294 | "PCI: VIA PCI bridge detected. Disabling DAC.\n"); | ||
295 | forbid_dac = 1; | 294 | forbid_dac = 1; |
296 | } | 295 | } |
297 | } | 296 | } |