Lines Matching defs:tmp
61 struct pci_dev *tmp;
67 tmp = bus->self;
70 if (tmp->dev_flags & PCI_DEV_FLAGS_BRIDGE_XLATE_ROOT)
82 if (pci_is_pcie(tmp)) {
83 switch (pci_pcie_type(tmp)) {
89 ret = fn(tmp,
90 PCI_DEVID(tmp->subordinate->number,
96 ret = fn(tmp, pci_dev_id(tmp), data);
102 if (tmp->dev_flags & PCI_DEV_FLAG_PCIE_BRIDGE_ALIAS)
103 ret = fn(tmp,
104 PCI_DEVID(tmp->subordinate->number,
107 ret = fn(tmp, pci_dev_id(tmp), data);
119 struct pci_bus *tmp;
124 list_for_each_entry(tmp, &bus->children, node) {
125 child = pci_do_find_bus(tmp, busnr);