[PATCH v2 05/12] PCI: brcmstb: Get resource before we start asserting reset controllers
Jim Quinlan
james.quinlan at broadcom.com
Wed Jul 3 11:02:49 PDT 2024
Place all of the devm_reset_contol_get*() calls above the calls that
assert the reset controllers.
Signed-off-by: Jim Quinlan <james.quinlan at broadcom.com>
---
drivers/pci/controller/pcie-brcmstb.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/drivers/pci/controller/pcie-brcmstb.c b/drivers/pci/controller/pcie-brcmstb.c
index 69926ee5c961..59daa4b2e6c5 100644
--- a/drivers/pci/controller/pcie-brcmstb.c
+++ b/drivers/pci/controller/pcie-brcmstb.c
@@ -1644,6 +1644,11 @@ static int brcm_pcie_probe(struct platform_device *pdev)
ret = PTR_ERR(pcie->perst_reset);
goto clk_out;
}
+ pcie->bridge = devm_reset_control_get_optional_exclusive(&pdev->dev, "bridge");
+ if (IS_ERR(pcie->bridge)) {
+ ret = PTR_ERR(pcie->bridge);
+ goto clk_out;
+ }
ret = reset_control_assert(pcie->swinit);
if (ret) {
@@ -1662,12 +1667,6 @@ static int brcm_pcie_probe(struct platform_device *pdev)
goto clk_out;
}
- pcie->bridge = devm_reset_control_get_optional_exclusive(&pdev->dev, "bridge");
- if (IS_ERR(pcie->bridge)) {
- ret = PTR_ERR(pcie->bridge);
- goto clk_out;
- }
-
ret = brcm_phy_start(pcie);
if (ret) {
reset_control_rearm(pcie->rescal);
--
2.17.1
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 4210 bytes
Desc: S/MIME Cryptographic Signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20240703/8cd412e6/attachment.p7s>
More information about the linux-arm-kernel
mailing list