]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
PCI: of_property: Rename struct of_pci_range to of_pci_range_entry
authorBjorn Helgaas <bhelgaas@google.com>
Fri, 17 Jan 2025 16:10:37 +0000 (10:10 -0600)
committerBjorn Helgaas <bhelgaas@google.com>
Sat, 18 Jan 2025 21:18:38 +0000 (15:18 -0600)
Previously there were two definitions of struct of_pci_range: one in
include/linux/of_address.h and another local to drivers/pci/of_property.c.

Rename the local struct of_pci_range to of_pci_range_entry to avoid
confusion.

Link: https://lore.kernel.org/r/20250117161037.643953-1-helgaas@kernel.org
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Lizhi Hou <lizhi.hou@amd.com>
drivers/pci/of_property.c

index 886c236e5de6e62fcf94c807c68b5cb966134347..58fbafac7c6acbf4be17521eff0fc405c6605825 100644 (file)
@@ -26,7 +26,7 @@ struct of_pci_addr_pair {
  * side and the child address is the corresponding address on the secondary
  * side.
  */
-struct of_pci_range {
+struct of_pci_range_entry {
        u32             child_addr[OF_PCI_ADDRESS_CELLS];
        u32             parent_addr[OF_PCI_ADDRESS_CELLS];
        u32             size[OF_PCI_SIZE_CELLS];
@@ -101,7 +101,7 @@ static int of_pci_prop_bus_range(struct pci_dev *pdev,
 static int of_pci_prop_ranges(struct pci_dev *pdev, struct of_changeset *ocs,
                              struct device_node *np)
 {
-       struct of_pci_range *rp;
+       struct of_pci_range_entry *rp;
        struct resource *res;
        int i, j, ret;
        u32 flags, num;