The patch titled x86: use dev_printk in quirk message has been removed from the -mm tree. Its filename was x86-use-dev_printk-in-quirk-message.patch This patch was dropped because it is obsolete The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: x86: use dev_printk in quirk message From: Bjorn Helgaas <bjorn.helgaas@xxxxxx> Change a VIA PCI quirk to use dev_info() rather than printk(). Signed-off-by: Bjorn Helgaas <bjorn.helgaas@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86/kernel/pci-dma.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff -puN arch/x86/kernel/pci-dma.c~x86-use-dev_printk-in-quirk-message arch/x86/kernel/pci-dma.c --- a/arch/x86/kernel/pci-dma.c~x86-use-dev_printk-in-quirk-message +++ a/arch/x86/kernel/pci-dma.c @@ -269,8 +269,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; } } _ Patches currently in -mm which might be from bjorn.helgaas@xxxxxx are origin.patch linux-next.patch mm-only-enforce-acpi-resource-conflict-checks.patch x86-use-dev_printk-in-quirk-message.patch agp-follow-lspci-device-vendor-style.patch git-ia64.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html