x86: fix missing space in printk, #2

Impact: clean up printk

Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
Michael Tokarev
2008-12-05 15:47:29 +03:00
committed by Ingo Molnar
parent 55c395b470
commit a0286c94f0

View File

@@ -300,8 +300,8 @@ 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." printk(KERN_INFO
"Disabling DAC.\n"); "PCI: VIA PCI bridge detected. Disabling DAC.\n");
forbid_dac = 1; forbid_dac = 1;
} }
} }