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

Commit 11d58742 authored by Stephen Hemminger's avatar Stephen Hemminger Committed by Jesse Barnes
Browse files

PCI: fix sparse warning in pci_remove_behind_bridge



Get rid of the second definition of dev which hides the earlier one in
the argument list and causes a warning from sparse.

Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarJesse Barnes <jbarnes@virtuousgeek.org>
parent 50cbfa51
Loading
Loading
Loading
Loading
+3 −7
Original line number Diff line number Diff line
@@ -115,13 +115,9 @@ void pci_remove_behind_bridge(struct pci_dev *dev)
{
	struct list_head *l, *n;

	if (dev->subordinate) {
		list_for_each_safe(l, n, &dev->subordinate->devices) {
			struct pci_dev *dev = pci_dev_b(l);

			pci_remove_bus_device(dev);
		}
	}
	if (dev->subordinate)
		list_for_each_safe(l, n, &dev->subordinate->devices)
			pci_remove_bus_device(pci_dev_b(l));
}

static void pci_stop_bus_devices(struct pci_bus *bus)