projects
/
GitHub
/
LineageOS
/
G12
/
android_kernel_amlogic_linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
998dd7c
)
x86: use dev_printk in quirk message
author
Bjorn Helgaas
<bjorn.helgaas@hp.com>
Tue, 24 Feb 2009 17:38:22 +0000
(10:38 -0700)
committer
Jesse Barnes
<jbarnes@virtuousgeek.org>
Fri, 20 Mar 2009 17:48:10 +0000
(10:48 -0700)
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>
arch/x86/kernel/pci-dma.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/x86/kernel/pci-dma.c
b/arch/x86/kernel/pci-dma.c
index b25428533141a5a73fb8787268864b774c5e9752..022833bb9ff18e2796037522bcf80e123628b567 100644
(file)
--- a/
arch/x86/kernel/pci-dma.c
+++ b/
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)
{
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;
}
}