bus_res           118 arch/arm64/kernel/pci.c 	struct resource *bus_res = &root->secondary;
bus_res           128 arch/arm64/kernel/pci.c 		dev_err(dev, "%04x:%pR ECAM region not found\n", seg, bus_res);
bus_res           140 arch/arm64/kernel/pci.c 	cfg = pci_ecam_create(dev, &cfgres, bus_res, ecam_ops);
bus_res           142 arch/arm64/kernel/pci.c 		dev_err(dev, "%04x:%pR error %ld mapping ECAM\n", seg, bus_res,
bus_res           197 drivers/acpi/pci_mcfg.c 	struct resource *bus_res = &root->secondary;
bus_res           210 drivers/acpi/pci_mcfg.c 		if (e->segment == seg && e->bus_start <= bus_res->start &&
bus_res           211 drivers/acpi/pci_mcfg.c 		    e->bus_end >= bus_res->end) {
bus_res           220 drivers/acpi/pci_mcfg.c 		res.start = root->mcfg_addr + (bus_res->start << 20);
bus_res           221 drivers/acpi/pci_mcfg.c 		res.end = res.start + (resource_size(bus_res) << 20) - 1;
bus_res            24 drivers/eisa/pci_eisa.c 	struct resource *res, *bus_res = NULL;
bus_res            43 drivers/eisa/pci_eisa.c 			bus_res = res;
bus_res            47 drivers/eisa/pci_eisa.c 	if (!bus_res) {
bus_res            53 drivers/eisa/pci_eisa.c 	pci_eisa_root.res		= bus_res;
bus_res            54 drivers/eisa/pci_eisa.c 	pci_eisa_root.bus_base_addr	= bus_res->start;
bus_res            50 drivers/pci/bus.c 	struct pci_bus_resource *bus_res;
bus_res            52 drivers/pci/bus.c 	bus_res = kzalloc(sizeof(struct pci_bus_resource), GFP_KERNEL);
bus_res            53 drivers/pci/bus.c 	if (!bus_res) {
bus_res            58 drivers/pci/bus.c 	bus_res->res = res;
bus_res            59 drivers/pci/bus.c 	bus_res->flags = flags;
bus_res            60 drivers/pci/bus.c 	list_add_tail(&bus_res->list, &bus->resources);
bus_res            65 drivers/pci/bus.c 	struct pci_bus_resource *bus_res;
bus_res            71 drivers/pci/bus.c 	list_for_each_entry(bus_res, &bus->resources, list) {
bus_res            73 drivers/pci/bus.c 			return bus_res->res;
bus_res            82 drivers/pci/bus.c 	struct pci_bus_resource *bus_res, *tmp;
bus_res            87 drivers/pci/bus.c 	list_for_each_entry_safe(bus_res, tmp, &bus->resources, list) {
bus_res            88 drivers/pci/bus.c 		list_del(&bus_res->list);
bus_res            89 drivers/pci/bus.c 		kfree(bus_res);