Commit 4726a823 authored by Bjorn Helgaas's avatar Bjorn Helgaas

PCI: layerscape: Remove unused ls_add_pcie_port() platform_device arg

ls_add_pcie_port() doesn't use the platform_device pointer passed to it, so
remove it.  No functional change intended.
Signed-off-by: default avatarBjorn Helgaas <bhelgaas@google.com>
parent fefe6733
...@@ -213,8 +213,7 @@ static const struct of_device_id ls_pcie_of_match[] = { ...@@ -213,8 +213,7 @@ static const struct of_device_id ls_pcie_of_match[] = {
{ }, { },
}; };
static int __init ls_add_pcie_port(struct ls_pcie *pcie, static int __init ls_add_pcie_port(struct ls_pcie *pcie)
struct platform_device *pdev)
{ {
struct pcie_port *pp = &pcie->pp; struct pcie_port *pp = &pcie->pp;
struct device *dev = pp->dev; struct device *dev = pp->dev;
...@@ -263,7 +262,7 @@ static int __init ls_pcie_probe(struct platform_device *pdev) ...@@ -263,7 +262,7 @@ static int __init ls_pcie_probe(struct platform_device *pdev)
if (!ls_pcie_is_bridge(pcie)) if (!ls_pcie_is_bridge(pcie))
return -ENODEV; return -ENODEV;
ret = ls_add_pcie_port(pcie, pdev); ret = ls_add_pcie_port(pcie);
if (ret < 0) if (ret < 0)
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment