summaryrefslogtreecommitdiff
path: root/drivers/pci/host/pcie-iproc-bcma.c
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2016-10-06 13:36:08 -0500
committerBjorn Helgaas <bhelgaas@google.com>2016-10-11 22:36:38 -0500
commit556c7bb7df367ada8833c9d78df48943e4826413 (patch)
tree888df82ce8b13512e050d0103561be453de55006 /drivers/pci/host/pcie-iproc-bcma.c
parent786aeccb4ac65b2071d2f790b4957819c389c9a9 (diff)
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-bcma.c')
-rw-r--r--drivers/pci/host/pcie-iproc-bcma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/host/pcie-iproc-bcma.c b/drivers/pci/host/pcie-iproc-bcma.c
index 94d1101fbf8d..ec6edafdaabf 100644
--- a/drivers/pci/host/pcie-iproc-bcma.c
+++ b/drivers/pci/host/pcie-iproc-bcma.c
@@ -53,7 +53,6 @@ static int iproc_pcie_bcma_probe(struct bcma_device *bdev)
return -ENOMEM;
pcie->dev = dev;
- bcma_set_drvdata(bdev, pcie);
pcie->base = bdev->io_addr;
pcie->base_addr = bdev->addr;
@@ -72,6 +71,7 @@ static int iproc_pcie_bcma_probe(struct bcma_device *bdev)
pci_free_resource_list(&res);
+ bcma_set_drvdata(bdev, pcie);
return ret;
}