]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
r8169: fix inconsistent indenting in rtl8169_get_eth_mac_stats
authorHeiner Kallweit <hkallweit1@gmail.com>
Thu, 24 Oct 2024 20:48:59 +0000 (22:48 +0200)
committerJakub Kicinski <kuba@kernel.org>
Tue, 29 Oct 2024 23:31:50 +0000 (16:31 -0700)
This fixes an inconsistent indenting introduced with e3fc5139bd8f
("r8169: implement additional ethtool stats ops").

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202410220413.1gAxIJ4t-lkp@intel.com/
Signed-off-by: Heiner Kallweit <hkallweit1@gmail.com>
Reviewed-by: Simon Horman <horms@kernel.org>
Link: https://patch.msgid.link/20fd6f39-3c1b-4af0-9adc-7d1f49728fad@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/realtek/r8169_main.c

index 3da0f6be7d8a14ce92a1c746b7321b007aa4c0d8..b84587841e3160eee0f0a6f7b9590ccbf19d4442 100644 (file)
@@ -2225,7 +2225,7 @@ static void rtl8169_get_eth_mac_stats(struct net_device *dev,
                le64_to_cpu(tp->counters->tx_broadcast64);
        mac_stats->MulticastFramesReceivedOK =
                le64_to_cpu(tp->counters->rx_multicast64);
-        mac_stats->FrameTooLongErrors =
+       mac_stats->FrameTooLongErrors =
                le32_to_cpu(tp->counters->rx_frame_too_long);
 }