diff options
| author | Zheng Yongjun <[email protected]> | 2020-12-10 13:50:50 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2020-12-10 21:02:16 +0000 |
| commit | a76b6b1fe8312905e3f91279f93a4c0cf3b1707c (patch) | |
| tree | 5f8161986001f273143f7371ba62b97c0c0b2997 | |
| parent | net/mlx4: simplify the return expression of mlx4_init_srq_table() (diff) | |
| download | kernel-a76b6b1fe8312905e3f91279f93a4c0cf3b1707c.tar.gz kernel-a76b6b1fe8312905e3f91279f93a4c0cf3b1707c.zip | |
net: mediatek: simplify the return expression of mtk_gmac_sgmii_path_setup()
Simplify the return expression.
Signed-off-by: Zheng Yongjun <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
| -rw-r--r-- | drivers/net/ethernet/mediatek/mtk_eth_path.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/net/ethernet/mediatek/mtk_eth_path.c b/drivers/net/ethernet/mediatek/mtk_eth_path.c index 0fe97155dd8f..6bc9f2487384 100644 --- a/drivers/net/ethernet/mediatek/mtk_eth_path.c +++ b/drivers/net/ethernet/mediatek/mtk_eth_path.c @@ -241,17 +241,13 @@ out: int mtk_gmac_sgmii_path_setup(struct mtk_eth *eth, int mac_id) { - int err, path; + int path; path = (mac_id == 0) ? MTK_ETH_PATH_GMAC1_SGMII : MTK_ETH_PATH_GMAC2_SGMII; /* Setup proper MUXes along the path */ - err = mtk_eth_mux_setup(eth, path); - if (err) - return err; - - return 0; + return mtk_eth_mux_setup(eth, path); } int mtk_gmac_gephy_path_setup(struct mtk_eth *eth, int mac_id) |
