The patch titled x86_64: fix bus numbering format in mmconfig warning has been removed from the -mm tree. Its filename is x86_64-fix-bus-numbering-format-in-mmconfig-warning.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: x86_64: fix bus numbering format in mmconfig warning From: Brice Goglin <brice@xxxxxxxx> Make an mmconfig warning print the bus id with a regular format. Signed-off-by: Brice Goglin <brice@xxxxxxxx> Cc: Andi Kleen <ak@xxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/x86_64/pci/mmconfig.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff -puN arch/x86_64/pci/mmconfig.c~x86_64-fix-bus-numbering-format-in-mmconfig-warning arch/x86_64/pci/mmconfig.c --- a/arch/x86_64/pci/mmconfig.c~x86_64-fix-bus-numbering-format-in-mmconfig-warning +++ a/arch/x86_64/pci/mmconfig.c @@ -156,9 +156,8 @@ static __init void unreachable_devices(v addr = pci_dev_base(0, k, PCI_DEVFN(i, 0)); if (addr == NULL|| readl(addr) != val1) { set_bit(i + 32*k, fallback_slots); - printk(KERN_NOTICE - "PCI: No mmconfig possible on device %x:%x\n", - k, i); + printk(KERN_NOTICE "PCI: No mmconfig possible" + " on device %02x:%02x\n", k, i); } } } _ Patches currently in -mm which might be from brice@xxxxxxxx are git-netdev-all.patch git-net.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