linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net/ethernet: update ret when ptp_clock is ERROR
@ 2020-11-06  7:56 Wang Qing
  2020-11-06 11:34 ` Grygorii Strashko
  2020-11-07 15:08 ` Richard Cochran
  0 siblings, 2 replies; 8+ messages in thread
From: Wang Qing @ 2020-11-06  7:56 UTC (permalink / raw)
  To: David S. Miller, Jakub Kicinski, Grygorii Strashko, Samuel Zou,
	Kurt Kanzenbach, Wang Qing, Ivan Khoronzhuk, netdev,
	linux-kernel

We always have to update the value of ret, otherwise the
 error value may be the previous one.

Signed-off-by: Wang Qing <wangqing@vivo.com>
---
 drivers/net/ethernet/ti/am65-cpts.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/ti/am65-cpts.c b/drivers/net/ethernet/ti/am65-cpts.c
index 75056c1..b77ff61
--- a/drivers/net/ethernet/ti/am65-cpts.c
+++ b/drivers/net/ethernet/ti/am65-cpts.c
@@ -1001,8 +1001,7 @@ struct am65_cpts *am65_cpts_create(struct device *dev, void __iomem *regs,
 	if (IS_ERR_OR_NULL(cpts->ptp_clock)) {
 		dev_err(dev, "Failed to register ptp clk %ld\n",
 			PTR_ERR(cpts->ptp_clock));
-		if (!cpts->ptp_clock)
-			ret = -ENODEV;
+		ret = cpts->ptp_clock ? cpts->ptp_clock : (-ENODEV);
 		goto refclk_disable;
 	}
 	cpts->phc_index = ptp_clock_index(cpts->ptp_clock);
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-11-11 13:04 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-06  7:56 [PATCH] net/ethernet: update ret when ptp_clock is ERROR Wang Qing
2020-11-06 11:34 ` Grygorii Strashko
2020-11-06 12:11   ` Arnd Bergmann
2020-11-06 12:58     ` Kurt Kanzenbach
2020-11-06 14:48       ` Grygorii Strashko
2020-11-07 15:07   ` Richard Cochran
2020-11-07 15:08 ` Richard Cochran
2020-11-11 13:03   ` Grygorii Strashko

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).