diff options
author | 2017-04-17 10:52:02 +0200 | |
---|---|---|
committer | 2017-04-18 13:55:08 -0400 | |
commit | 8a52488bc0b9c33f3520882e1986bce6b9b3af00 (patch) | |
tree | b5a3599544565d536e2e1d2801caa3d7bde2fc4a | |
parent | net: mvpp2: Improve a size determination in two functions (diff) | |
download | wireguard-linux-8a52488bc0b9c33f3520882e1986bce6b9b3af00.tar.xz wireguard-linux-8a52488bc0b9c33f3520882e1986bce6b9b3af00.zip |
net: mvpp2: Fix a jump label position in mvpp2_rx()
The script "checkpatch.pl" pointed out that labels should not be indented.
Thus delete two horizontal tabs before the jump label "err_drop_frame"
in the function "mvpp2_rx".
Signed-off-by: Markus Elfring <elfring@users.sourceforge.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/marvell/mvpp2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/marvell/mvpp2.c b/drivers/net/ethernet/marvell/mvpp2.c index 3bddb8fcd595..4f4b659d7297 100644 --- a/drivers/net/ethernet/marvell/mvpp2.c +++ b/drivers/net/ethernet/marvell/mvpp2.c @@ -5515,7 +5515,7 @@ static int mvpp2_rx(struct mvpp2_port *port, int rx_todo, * comprised by the RX descriptor. */ if (rx_status & MVPP2_RXD_ERR_SUMMARY) { - err_drop_frame: +err_drop_frame: dev->stats.rx_errors++; mvpp2_rx_error(port, rx_desc); /* Return the buffer to the pool */ |