]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
net: phy: mxl-86110: fix indentation in struct phy_driver
authorDaniel Golle <daniel@makrotopia.org>
Fri, 22 Aug 2025 17:38:39 +0000 (18:38 +0100)
committerJakub Kicinski <kuba@kernel.org>
Tue, 26 Aug 2025 00:07:01 +0000 (17:07 -0700)
The .led_hw_control_get and .led_hw_control_set ops are indented with
spaces instead of tabs, unlike the rest of the values of the PHY's
struct phy_driver instance.
Use tabs instead of spaces resulting in a uniform indentation style.

Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Reviewed-by: Andrew Lunn <andrew@lunn.ch>
Link: https://patch.msgid.link/b9b7336ae309facc5e73874c62e64492fd749cc6.1755884175.git.daniel@makrotopia.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/phy/mxl-86110.c

index 9ef2a8d7f51413c1efc265504502185afc09e75b..ba25d5b0178022b30d5ab3119b0d75f9061446d1 100644 (file)
@@ -662,8 +662,8 @@ static struct phy_driver mxl_phy_drvs[] = {
                .set_wol                = mxl86110_set_wol,
                .led_brightness_set     = mxl86110_led_brightness_set,
                .led_hw_is_supported    = mxl86110_led_hw_is_supported,
-               .led_hw_control_get     = mxl86110_led_hw_control_get,
-               .led_hw_control_set     = mxl86110_led_hw_control_set,
+               .led_hw_control_get     = mxl86110_led_hw_control_get,
+               .led_hw_control_set     = mxl86110_led_hw_control_set,
        },
 };