diff options
author | Florian Fainelli <florian.fainelli@broadcom.com> | 2023-06-07 11:34:52 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2023-06-09 10:38:43 +0100 |
commit | 57fd7d59b1c7d6f6a1c34863a2bc4ff1f6c92d40 (patch) | |
tree | 32276c4210071cb32fba7e785215e53512531d28 /include/linux/brcmphy.h | |
parent | 54a8c43f3bcfd5adbb9f15f8a992a3d0fce8ee50 (diff) | |
download | lwn-57fd7d59b1c7d6f6a1c34863a2bc4ff1f6c92d40.tar.gz lwn-57fd7d59b1c7d6f6a1c34863a2bc4ff1f6c92d40.zip |
net: phy: broadcom: Rename LED registers
These registers are common to most PHYs and are not specific to the
BCM5482, renamed the constants accordingly, no functional change.
Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>
Reviewed-by: Simon Horman <simon.horman@corigine.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/brcmphy.h')
-rw-r--r-- | include/linux/brcmphy.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/brcmphy.h b/include/linux/brcmphy.h index 251833ab271f..ab21b8a1b2c8 100644 --- a/include/linux/brcmphy.h +++ b/include/linux/brcmphy.h @@ -206,11 +206,11 @@ #define BCM_NO_ANEG_APD_EN 0x0060 /* bits 5 & 6 */ #define BCM_APD_SINGLELP_EN 0x0100 /* Bit 8 */ -#define BCM5482_SHD_LEDS1 0x0d /* 01101: LED Selector 1 */ +#define BCM54XX_SHD_LEDS1 0x0d /* 01101: LED Selector 1 */ /* LED3 / ~LINKSPD[2] selector */ -#define BCM5482_SHD_LEDS1_LED3(src) ((src & 0xf) << 4) +#define BCM54XX_SHD_LEDS1_LED3(src) ((src & 0xf) << 4) /* LED1 / ~LINKSPD[1] selector */ -#define BCM5482_SHD_LEDS1_LED1(src) ((src & 0xf) << 0) +#define BCM54XX_SHD_LEDS1_LED1(src) ((src & 0xf) << 0) #define BCM54XX_SHD_RGMII_MODE 0x0b /* 01011: RGMII Mode Selector */ #define BCM5482_SHD_SSD 0x14 /* 10100: Secondary SerDes control */ #define BCM5482_SHD_SSD_LEDM 0x0008 /* SSD LED Mode enable */ |