From: Marek Vasut Date: Fri, 16 Feb 2018 23:47:38 +0000 (+0100) Subject: net: sh_eth: Return directly from sh_eth_recv_start X-Git-Tag: v2018.03-rc3~7^2~2 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=60279b5757990665386799ccf681d420de295404;p=u-boot net: sh_eth: Return directly from sh_eth_recv_start Drop the len variable, it's useless. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu Cc: Joe Hershberger --- diff --git a/drivers/net/sh_eth.c b/drivers/net/sh_eth.c index a7d26a2a40..6863aecef9 100644 --- a/drivers/net/sh_eth.c +++ b/drivers/net/sh_eth.c @@ -120,7 +120,6 @@ err: static int sh_eth_recv_start(struct sh_eth_dev *eth) { - int len = 0; struct sh_eth_info *port_info = ð->port_info[eth->port]; /* Check if the rx descriptor is ready */ @@ -132,9 +131,7 @@ static int sh_eth_recv_start(struct sh_eth_dev *eth) if (port_info->rx_desc_cur->rd0 & RD_RFE) return -EINVAL; - len = port_info->rx_desc_cur->rd1 & 0xffff; - - return len; + return port_info->rx_desc_cur->rd1 & 0xffff; } static void sh_eth_recv_finish(struct sh_eth_dev *eth)