diff options
| author | Edward Cree <[email protected]> | 2020-09-11 19:44:56 +0100 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2020-09-11 14:55:14 -0700 |
| commit | 3d6aef65dfaa0e9d6632fb15aebc01aae163c392 (patch) | |
| tree | a61450462f91d077d1a2f82d0f6dd4768d70d82a | |
| parent | c0941025e2089bc65021ede7d46311ba1c88b150 (diff) | |
sfc: remove spurious unreachable return statement
The statement above it already returns, so there is no way to get here.
Signed-off-by: Edward Cree <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
| -rw-r--r-- | drivers/net/ethernet/sfc/ef100_tx.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/ethernet/sfc/ef100_tx.c b/drivers/net/ethernet/sfc/ef100_tx.c index 078c7ec2a70e..ef9c2e879499 100644 --- a/drivers/net/ethernet/sfc/ef100_tx.c +++ b/drivers/net/ethernet/sfc/ef100_tx.c @@ -27,7 +27,6 @@ int ef100_tx_probe(struct efx_tx_queue *tx_queue) (tx_queue->ptr_mask + 2) * sizeof(efx_oword_t), GFP_KERNEL); - return 0; } void ef100_tx_init(struct efx_tx_queue *tx_queue) |