Home
last modified time | relevance | path

Searched refs:root_ops (Results 1 – 2 of 2) sorted by relevance

/linux/arch/loongarch/pci/
H A Dacpi.c198 struct acpi_pci_root_ops *root_ops; in pci_acpi_scan_root() local
208 root_ops = kzalloc(sizeof(*root_ops), GFP_KERNEL); in pci_acpi_scan_root()
209 if (!root_ops) { in pci_acpi_scan_root()
217 kfree(root_ops); in pci_acpi_scan_root()
221 root_ops->release_info = acpi_release_root_info; in pci_acpi_scan_root()
222 root_ops->prepare_resources = acpi_prepare_root_resources; in pci_acpi_scan_root()
223 root_ops->pci_ops = (struct pci_ops *)&info->cfg->ops->pci_ops; in pci_acpi_scan_root()
229 kfree(root_ops); in pci_acpi_scan_root()
233 bus = acpi_pci_root_create(root, root_ops, in pci_acpi_scan_root()
[all...]
/linux/drivers/pci/
H A Dpci-acpi.c1666 struct acpi_pci_root_ops *root_ops; in pci_acpi_scan_root() local
1673 root_ops = kzalloc(sizeof(*root_ops), GFP_KERNEL); in pci_acpi_scan_root()
1674 if (!root_ops) { in pci_acpi_scan_root()
1682 kfree(root_ops); in pci_acpi_scan_root()
1686 root_ops->release_info = pci_acpi_generic_release_info; in pci_acpi_scan_root()
1687 root_ops->prepare_resources = pci_acpi_root_prepare_resources; in pci_acpi_scan_root()
1688 root_ops->pci_ops = (struct pci_ops *)&ri->cfg->ops->pci_ops; in pci_acpi_scan_root()
1689 bus = acpi_pci_root_create(root, root_ops, &ri->common, ri->cfg); in pci_acpi_scan_root()