721e51ebf056e941f2c4a0217bbd5593d30e404c
[openwrt/staging/blocktrron.git] /
1 From b8bd8c44a266c9a7dcb907eab10fbb119e3f6494 Mon Sep 17 00:00:00 2001
2 From: Heiner Kallweit <hkallweit1@gmail.com>
3 Date: Thu, 24 Oct 2024 22:48:59 +0200
4 Subject: [PATCH] r8169: fix inconsistent indenting in
5 rtl8169_get_eth_mac_stats
6
7 This fixes an inconsistent indenting introduced with e3fc5139bd8f
8 ("r8169: implement additional ethtool stats ops").
9
10 Reported-by: kernel test robot <lkp@intel.com>
11 Closes: https://lore.kernel.org/oe-kbuild-all/202410220413.1gAxIJ4t-lkp@intel.com/
12 Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
13 Reviewed-by: Simon Horman <horms@kernel.org>
14 Link: https://patch.msgid.link/20fd6f39-3c1b-4af0-9adc-7d1f49728fad@gmail.com
15 Signed-off-by: Jakub Kicinski <kuba@kernel.org>
16 ---
17 drivers/net/ethernet/realtek/r8169_main.c | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20 --- a/drivers/net/ethernet/realtek/r8169_main.c
21 +++ b/drivers/net/ethernet/realtek/r8169_main.c
22 @@ -2227,7 +2227,7 @@ static void rtl8169_get_eth_mac_stats(st
23 le64_to_cpu(tp->counters->tx_broadcast64);
24 mac_stats->MulticastFramesReceivedOK =
25 le64_to_cpu(tp->counters->rx_multicast64);
26 - mac_stats->FrameTooLongErrors =
27 + mac_stats->FrameTooLongErrors =
28 le32_to_cpu(tp->counters->rx_frame_too_long);
29 }
30