提交 8610e98f 编写于 作者: B Bjorn Helgaas

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.

See also 1dff012f ("PCI: Drop of_match_ptr() to avoid unused
variables").

Link: https://lore.kernel.org/r/20221025191339.667614-2-helgaas@kernel.org
Link: https://lore.kernel.org/r/20221116205100.1136224-2-helgaas@kernel.orgSigned-off-by: NBjorn Helgaas <bhelgaas@google.com>
上级 277004d7
...@@ -553,7 +553,7 @@ static const struct of_device_id faraday_pci_of_match[] = { ...@@ -553,7 +553,7 @@ static const struct of_device_id faraday_pci_of_match[] = {
static struct platform_driver faraday_pci_driver = { static struct platform_driver faraday_pci_driver = {
.driver = { .driver = {
.name = "ftpci100", .name = "ftpci100",
.of_match_table = of_match_ptr(faraday_pci_of_match), .of_match_table = faraday_pci_of_match,
.suppress_bind_attrs = true, .suppress_bind_attrs = true,
}, },
.probe = faraday_pci_probe, .probe = faraday_pci_probe,
......
...@@ -901,7 +901,7 @@ static const struct of_device_id v3_pci_of_match[] = { ...@@ -901,7 +901,7 @@ static const struct of_device_id v3_pci_of_match[] = {
static struct platform_driver v3_pci_driver = { static struct platform_driver v3_pci_driver = {
.driver = { .driver = {
.name = "pci-v3-semi", .name = "pci-v3-semi",
.of_match_table = of_match_ptr(v3_pci_of_match), .of_match_table = v3_pci_of_match,
.suppress_bind_attrs = true, .suppress_bind_attrs = true,
}, },
.probe = v3_pci_probe, .probe = v3_pci_probe,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册