Skip to content

Commit

Permalink
x86: fix missing space in printk, #2
Browse files Browse the repository at this point in the history
Impact: clean up printk

Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Michael Tokarev authored and Ingo Molnar committed Dec 5, 2008
1 parent 55c395b commit a0286c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/x86/kernel/pci-dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -300,8 +300,8 @@ 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");
printk(KERN_INFO
"PCI: VIA PCI bridge detected. Disabling DAC.\n");
forbid_dac = 1;
}
}
Expand Down

0 comments on commit a0286c9

Please sign in to comment.