Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 40bee2ee authored by Brice Goglin's avatar Brice Goglin Committed by Andi Kleen
Browse files

[PATCH] fix bus numbering format in mmconfig warning



Make an mmconfig warning print the bus id with a regular format.

Signed-off-by: default avatarBrice Goglin <brice@myri.com>
Signed-off-by: default avatarAndi Kleen <ak@suse.de>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
parent c0d83745
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -156,9 +156,8 @@ static __init void unreachable_devices(void)
			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);
			}
		}
	}