summaryrefslogtreecommitdiffstats
path: root/drivers/pci
diff options
context:
space:
mode:
authorBjorn Helgaas <bhelgaas@google.com>2021-11-05 11:28:50 -0500
committerBjorn Helgaas <bhelgaas@google.com>2021-11-05 11:28:50 -0500
commit1f42bc19bb12f8caa8f16df5dfa3e129c151360f (patch)
tree4492680beaad6bf49e6ebd3a91a331a1bdeeb019 /drivers/pci
parentfd6c10ca26f5dd02bebc131bca6cad8b182bd6df (diff)
parent65315ec52c9bd518e22fde1c9ce1e787b9122b4a (diff)
downloadlinux-1f42bc19bb12f8caa8f16df5dfa3e129c151360f.tar.bz2
Merge branch 'remotes/lorenzo/pci/imx6'
- Remove unused assignment (Krzysztof WilczyƄski) * remotes/lorenzo/pci/imx6: PCI: imx6: Remove unused assignment to variable ret
Diffstat (limited to 'drivers/pci')
-rw-r--r--drivers/pci/controller/dwc/pci-imx6.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pci/controller/dwc/pci-imx6.c b/drivers/pci/controller/dwc/pci-imx6.c
index 80fc98acf097..26f49f797b0f 100644
--- a/drivers/pci/controller/dwc/pci-imx6.c
+++ b/drivers/pci/controller/dwc/pci-imx6.c
@@ -1132,7 +1132,7 @@ static int imx6_pcie_probe(struct platform_device *pdev)
/* Limit link speed */
pci->link_gen = 1;
- ret = of_property_read_u32(node, "fsl,max-link-speed", &pci->link_gen);
+ of_property_read_u32(node, "fsl,max-link-speed", &pci->link_gen);
imx6_pcie->vpcie = devm_regulator_get_optional(&pdev->dev, "vpcie");
if (IS_ERR(imx6_pcie->vpcie)) {