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

Commit d41ca6df authored by Chris Metcalf's avatar Chris Metcalf
Browse files

tilegx pci: fix semantic merge conflict with 3527ed81



Yinghai Lu removed pci_bus.subordinate in pci-next, which meant that
the tile-next changes to add tilegx PCI support don't build.  This
was expected (seen in linux-next) and this one-line fix is along
the same lines as commit b918c62e for all other architectures.

Acked-by: default avatarBjorn Helgaas <bhelgaas@google.com>
Signed-off-by: default avatarChris Metcalf <cmetcalf@tilera.com>
parent bdc0077a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -853,7 +853,7 @@ int __init pcibios_init(void)
		bus = pci_scan_root_bus(NULL, next_busno, controller->ops,
					controller, &resources);
		controller->root_bus = bus;
		next_busno = bus->subordinate + 1;
		next_busno = bus->busn_res.end + 1;

	}