From: Markus Elfring Date: Mon, 17 Apr 2017 08:52:02 +0000 (+0200) Subject: net: mvpp2: Fix a jump label position in mvpp2_rx() X-Git-Tag: v5.15~11411^2~163^2~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8a52488bc0b9c33f3520882e1986bce6b9b3af00;p=platform%2Fkernel%2Flinux-starfive.git 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 Signed-off-by: David S. Miller --- diff --git a/drivers/net/ethernet/marvell/mvpp2.c b/drivers/net/ethernet/marvell/mvpp2.c index 3bddb8f..4f4b659 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 */