Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Daniel Golle and committed by
Jakub Kicinski
befbdee4 29c10aeb

+2 -2
+2 -2
drivers/net/phy/mxl-86110.c
··· 662 662 .set_wol = mxl86110_set_wol, 663 663 .led_brightness_set = mxl86110_led_brightness_set, 664 664 .led_hw_is_supported = mxl86110_led_hw_is_supported, 665 - .led_hw_control_get = mxl86110_led_hw_control_get, 666 - .led_hw_control_set = mxl86110_led_hw_control_set, 665 + .led_hw_control_get = mxl86110_led_hw_control_get, 666 + .led_hw_control_set = mxl86110_led_hw_control_set, 667 667 }, 668 668 }; 669 669