Remove debugging

This commit is contained in:
Jeremy Soller 2019-10-09 21:33:58 -06:00
parent e2e360e3f8
commit 9ca336f837
No known key found for this signature in database
GPG Key ID: E988B49EE78A7FB1
2 changed files with 0 additions and 17 deletions

View File

@ -1218,14 +1218,6 @@ static void pci_bridge_route(struct bus *link, scan_state state)
if (state == PCI_ROUTE_SCAN) {
link->secondary = parent->subordinate + 1;
link->subordinate = link->secondary + dev->hotplug_buses;
printk(
BIOS_DEBUG,
"system76: %s: %s: assigning link secondary %d subordinate %d\n",
__func__,
dev_path(dev),
link->secondary,
link->subordinate
);
}
if (state == PCI_ROUTE_CLOSE) {
@ -1261,13 +1253,6 @@ static void pci_bridge_route(struct bus *link, scan_state state)
if (state == PCI_ROUTE_FINAL) {
pci_write_config16(dev, PCI_COMMAND, link->bridge_cmd);
parent->subordinate = link->subordinate;
printk(
BIOS_DEBUG,
"system76: %s: %s: assigning parent subordinate %d\n",
__func__,
dev_path(dev),
parent->subordinate
);
}
}

View File

@ -92,8 +92,6 @@ void scan_generic_bus(struct device *bus)
link->secondary = ++bus_max;
printk(BIOS_DEBUG, "system76: scan_generic_bus: assigning link secondary %d\n", link->secondary);
for (child = link->children; child; child = child->sibling) {
if (child->chip_ops && child->chip_ops->enable_dev)