diff options
author | 2018-10-17 13:11:00 +0530 | |
---|---|---|
committer | 2018-10-17 09:44:16 +0100 | |
commit | c81ab80136727e11ad76a601b179d4dc84b08120 (patch) | |
tree | 76778dbd8193927483e09d37413ee75b4a725b5b /drivers/pci/controller/dwc/pci-keystone.c | |
parent | PCI: keystone: Merge pci-keystone-dw.c and pci-keystone.c (diff) | |
download | wireguard-linux-c81ab80136727e11ad76a601b179d4dc84b08120.tar.xz wireguard-linux-c81ab80136727e11ad76a601b179d4dc84b08120.zip |
PCI: keystone: Remove redundant platform_set_drvdata() invocation
No functional change. Remove redundant platform_set_drvdata() invocation
in ks_pcie_probe().
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Diffstat (limited to '')
-rw-r--r-- | drivers/pci/controller/dwc/pci-keystone.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/pci/controller/dwc/pci-keystone.c b/drivers/pci/controller/dwc/pci-keystone.c index 337464d15775..926e345dc965 100644 --- a/drivers/pci/controller/dwc/pci-keystone.c +++ b/drivers/pci/controller/dwc/pci-keystone.c @@ -912,8 +912,6 @@ static int __init ks_pcie_probe(struct platform_device *pdev) if (ret) return ret; - platform_set_drvdata(pdev, ks_pcie); - ret = ks_add_pcie_port(ks_pcie, pdev); if (ret < 0) goto fail_clk; |