aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPali Rohár <[email protected]>2022-01-04 16:35:24 +0100
committerLorenzo Pieralisi <[email protected]>2022-02-03 10:54:05 +0000
commit7a02acdb5debff8cbee4a91efbba084f7b26a680 (patch)
tree8dcf065a3e46c5e8338f1317a12536d61e6be356
parent7f09a4b195a94cda747ff87b56834907844b326c (diff)
PCI: mvebu: Remove duplicate nports assignment
Member pcie->nports is initialized to correct value before the previous for-loop. There is not need to initialize it more times. Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Pali Rohár <[email protected]> Signed-off-by: Lorenzo Pieralisi <[email protected]> Reviewed-by: Rob Herring <[email protected]> Acked-by: Thomas Petazzoni <[email protected]>
-rw-r--r--drivers/pci/controller/pci-mvebu.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/pci/controller/pci-mvebu.c b/drivers/pci/controller/pci-mvebu.c
index 7156ddcfb1e0..a7eaa58483dd 100644
--- a/drivers/pci/controller/pci-mvebu.c
+++ b/drivers/pci/controller/pci-mvebu.c
@@ -1332,8 +1332,6 @@ static int mvebu_pcie_probe(struct platform_device *pdev)
mvebu_pcie_set_local_dev_nr(port, 0);
}
- pcie->nports = i;
-
bridge->sysdata = pcie;
bridge->ops = &mvebu_pcie_ops;
bridge->align_resource = mvebu_pcie_align_resource;