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

Commit d563e2cc authored by Bjorn Helgaas's avatar Bjorn Helgaas
Browse files

PCI: Rename local variables to conventional names



"bus" is the conventional name for a "struct pci_bus *" variable.

Tested-by: default avatarYijing Wang <wangyijing@huawei.com>
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
Acked-by: default avatarYinghai Lu <yinghai@kernel.org>
parent 7990681a
Loading
Loading
Loading
Loading
+7 −7
Original line number Diff line number Diff line
@@ -43,19 +43,19 @@ static void pci_destroy_dev(struct pci_dev *dev)
	pci_dev_put(dev);
}

void pci_remove_bus(struct pci_bus *pci_bus)
void pci_remove_bus(struct pci_bus *bus)
{
	pci_proc_detach_bus(pci_bus);
	pci_proc_detach_bus(bus);

	down_write(&pci_bus_sem);
	list_del(&pci_bus->node);
	pci_bus_release_busn_res(pci_bus);
	list_del(&bus->node);
	pci_bus_release_busn_res(bus);
	up_write(&pci_bus_sem);
	if (!pci_bus->is_added)
	if (!bus->is_added)
		return;

	pci_remove_legacy_files(pci_bus);
	device_unregister(&pci_bus->dev);
	pci_remove_legacy_files(bus);
	device_unregister(&bus->dev);
}
EXPORT_SYMBOL(pci_remove_bus);