PCI: Drop of_match_ptr() to avoid unused variables
authorBjorn Helgaas <bhelgaas@google.com>
Wed, 6 Jul 2022 19:27:21 +0000 (14:27 -0500)
committerBjorn Helgaas <bhelgaas@google.com>
Wed, 6 Jul 2022 19:34:09 +0000 (14:34 -0500)
commit1dff012f636d4440f2f99256c09c5b6bfacf7552
tree0bc584c8d5cfd39d29e8d192e90a0c01160a5d87
parentf2906aa863381afb0015a9eb7fefad885d4e5a56
PCI: Drop of_match_ptr() to avoid unused variables

We have stubs for most OF interfaces even when CONFIG_OF is not set, so we
allow building of most controller drivers in that case for compile testing.

When CONFIG_OF is not set, "of_match_ptr(<match_table>)" compiles to NULL,
which leaves <match_table> unused, resulting in errors like this:

  $ make W=1
  drivers/pci/controller/pci-xgene.c:636:34: error: ‘xgene_pcie_match_table’ defined but not used [-Werror=unused-const-variable=]

Drop of_match_ptr() to avoid the unused variable warning.

Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
drivers/pci/controller/dwc/pci-keystone.c
drivers/pci/controller/dwc/pcie-armada8k.c
drivers/pci/controller/dwc/pcie-spear13xx.c
drivers/pci/controller/pci-xgene.c