[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20150103002526.GA15863@waimea.lkp.intel.com>
Date: Sat, 3 Jan 2015 08:25:26 +0800
From: kbuild test robot <fengguang.wu@...el.com>
To: Roger Chen <roger.chen@...k-chips.com>
Cc: kbuild-all@...org, Giuseppe Cavallaro <peppe.cavallaro@...com>,
netdev@...r.kernel.org, linux-kernel@...r.kernel.org
Subject: [PATCH] GMAC: fix simple_return.cocci warnings
drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c:425:1-4: WARNING: end returns can be simpified
Simplify a trivial if-return sequence. Possibly combine with a
preceding function call.
Generated by: scripts/coccinelle/misc/simple_return.cocci
CC: Roger Chen <roger.chen@...k-chips.com>
Signed-off-by: Fengguang Wu <fengguang.wu@...el.com>
---
dwmac-rk.c | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
--- a/drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c
+++ b/drivers/net/ethernet/stmicro/stmmac/dwmac-rk.c
@@ -422,11 +422,7 @@ static int rk_gmac_init(struct platform_
if (ret)
return ret;
- ret = gmac_clk_enable(bsp_priv, true);
- if (ret)
- return ret;
-
- return 0;
+ return gmac_clk_enable(bsp_priv, true);
}
static void rk_gmac_exit(struct platform_device *pdev, void *priv)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists