s390/qeth: remove redundant if-clause in RX poll code
authorJulian Wiedmann <jwi@linux.ibm.com>
Wed, 25 Mar 2020 09:34:59 +0000 (10:34 +0100)
committerDavid S. Miller <davem@davemloft.net>
Wed, 25 Mar 2020 19:07:15 +0000 (12:07 -0700)
commitb439044b70e4b7992f82974eb77d92c95da5960f
tree3e47f63227090c87c2e2c80828030a61d8dd005c
parent781b9a1820a1533135811bf281fefe0fc6920006
s390/qeth: remove redundant if-clause in RX poll code

Whenever all completed RX buffers have been processed
(ie. rx->b_count == 0), we call down to the HW layer to scan for
additional buffers. If no further buffers are available, the code
breaks out of the while-loop.

So we never reach the 'process an RX buffer' step with rx->b_count == 0,
eliminate that check and one level of indentation.

Signed-off-by: Julian Wiedmann <jwi@linux.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/s390/net/qeth_core_main.c