diff mbox

stmmac: devm_reset_control_get can return PROBE_DEFER

Message ID 1428543694-41762-1-git-send-email-preid@electromag.com.au
State Accepted, archived
Delegated to: David Miller
Headers show

Commit Message

Phil Reid April 9, 2015, 1:41 a.m. UTC
In socfpga_dwmac_parse_data forward error code from devm_reset_control_get.
This gives the driver another chance to laod if altr,rst-mgr is loaded after
the network driver.

Signed-off-by: Phil Reid <preid@electromag.com.au>
---
 drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

David Miller April 9, 2015, 6:11 p.m. UTC | #1
From: Phil Reid <preid@electromag.com.au>
Date: Wed,  8 Apr 2015 18:41:34 -0700

> In socfpga_dwmac_parse_data forward error code from devm_reset_control_get.
> This gives the driver another chance to laod if altr,rst-mgr is loaded after
> the network driver.
> 
> Signed-off-by: Phil Reid <preid@electromag.com.au>

Applied, thanks.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
index e97074c..1cacea9 100644
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-socfpga.c
@@ -91,7 +91,7 @@  static int socfpga_dwmac_parse_data(struct socfpga_dwmac *dwmac, struct device *
 						  STMMAC_RESOURCE_NAME);
 	if (IS_ERR(dwmac->stmmac_rst)) {
 		dev_info(dev, "Could not get reset control!\n");
-		return -EINVAL;
+		return PTR_ERR(dwmac->stmmac_rst);
 	}
 
 	dwmac->interface = of_get_phy_mode(np);