diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2016-10-06 20:36:08 +0200 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2016-10-12 05:36:38 +0200 |
commit | 556c7bb7df367ada8833c9d78df48943e4826413 (patch) | |
tree | 888df82ce8b13512e050d0103561be453de55006 /drivers/pci/host/pcie-iproc-platform.c | |
parent | PCI: iproc: Add local struct device pointers (diff) | |
download | linux-556c7bb7df367ada8833c9d78df48943e4826413.tar.xz linux-556c7bb7df367ada8833c9d78df48943e4826413.zip |
PCI: iproc: Set drvdata at end of probe function
Set the drvdata pointer at the end of probe function for consistency with
other drivers. We don't need the drvdata until after the probe completes,
and we don't need it at all if the probe fails. No functional change
intended.
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'drivers/pci/host/pcie-iproc-platform.c')
-rw-r--r-- | drivers/pci/host/pcie-iproc-platform.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/host/pcie-iproc-platform.c b/drivers/pci/host/pcie-iproc-platform.c index 6030dc1644d2..a3de087976b3 100644 --- a/drivers/pci/host/pcie-iproc-platform.c +++ b/drivers/pci/host/pcie-iproc-platform.c @@ -59,7 +59,6 @@ static int iproc_pcie_pltfm_probe(struct platform_device *pdev) pcie->dev = dev; pcie->type = (enum iproc_pcie_type)of_id->data; - platform_set_drvdata(pdev, pcie); ret = of_address_to_resource(np, 0, ®); if (ret < 0) { @@ -124,6 +123,7 @@ static int iproc_pcie_pltfm_probe(struct platform_device *pdev) pci_free_resource_list(&res); + platform_set_drvdata(pdev, pcie); return ret; } |