diff options
author | Dr. David Alan Gilbert <[email protected]> | 2024-05-09 01:08:58 +0100 |
---|---|---|
committer | Bjorn Helgaas <[email protected]> | 2024-06-06 14:54:43 -0500 |
commit | 88f2ab39990a3ab8b13c3cb6e276459a1a6c370b (patch) | |
tree | d883cda5b8fc00dc51406691799fb7fab288902e | |
parent | 1613e604df0cd359cf2a7fbd9be7a0bcfacfabd0 (diff) |
ACPI: PCI: Remove unused struct 'acpi_handle_node'
'acpi_handle_node' is unused since 63f534b8bad9 ("ACPI: PCI: Rework
acpi_get_pci_dev()"). Remove it.
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Dr. David Alan Gilbert <[email protected]>
Signed-off-by: Bjorn Helgaas <[email protected]>
Reviewed-by: Jonathan Cameron <[email protected]>
-rw-r--r-- | drivers/acpi/pci_root.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/acpi/pci_root.c b/drivers/acpi/pci_root.c index 58b89b8d950e..59e6955e24ed 100644 --- a/drivers/acpi/pci_root.c +++ b/drivers/acpi/pci_root.c @@ -293,11 +293,6 @@ struct acpi_pci_root *acpi_pci_find_root(acpi_handle handle) } EXPORT_SYMBOL_GPL(acpi_pci_find_root); -struct acpi_handle_node { - struct list_head node; - acpi_handle handle; -}; - /** * acpi_get_pci_dev - convert ACPI CA handle to struct pci_dev * @handle: the handle in question |