summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Golle <daniel@makrotopia.org>2025-08-22 20:38:39 +0300
committerJakub Kicinski <kuba@kernel.org>2025-08-26 03:07:01 +0300
commitbefbdee4ba8966410b0c8a1a38ab07e13c8331f2 (patch)
treee41c087660c1c22e5a768b8cf6282be937e0db19
parent29c10aeb316072aacb9ef4d0ebd6e0c9b0461ed3 (diff)
downloadlinux-befbdee4ba8966410b0c8a1a38ab07e13c8331f2.tar.xz
net: phy: mxl-86110: fix indentation in struct phy_driver
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>
-rw-r--r--drivers/net/phy/mxl-86110.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/mxl-86110.c b/drivers/net/phy/mxl-86110.c
index 9ef2a8d7f514..ba25d5b01780 100644
--- a/drivers/net/phy/mxl-86110.c
+++ b/drivers/net/phy/mxl-86110.c
@@ -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,
},
};