diff options
| author | Frank Sae <[email protected]> | 2023-01-28 06:35:58 +0000 |
|---|---|---|
| committer | Jakub Kicinski <[email protected]> | 2023-01-31 05:05:36 +0000 |
| commit | 3c1dc22162d673d595855d24f95200ed2643f88f (patch) | |
| tree | e934f30b723c61bef978ff736f11742153553c30 | |
| parent | net: phy: fix the spelling problem of Sentinel (diff) | |
| download | kernel-3c1dc22162d673d595855d24f95200ed2643f88f.tar.gz kernel-3c1dc22162d673d595855d24f95200ed2643f88f.zip | |
net: phy: motorcomm: change the phy id of yt8521 and yt8531s to lowercase
The phy id is usually defined in lower case.
Signed-off-by: Frank Sae <[email protected]>
Reviewed-by: Andrew Lunn <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jakub Kicinski <[email protected]>
| -rw-r--r-- | drivers/net/phy/motorcomm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/net/phy/motorcomm.c b/drivers/net/phy/motorcomm.c index b6968c78c303..aa02e722c51d 100644 --- a/drivers/net/phy/motorcomm.c +++ b/drivers/net/phy/motorcomm.c @@ -12,8 +12,8 @@ #include <linux/phy.h> #define PHY_ID_YT8511 0x0000010a -#define PHY_ID_YT8521 0x0000011A -#define PHY_ID_YT8531S 0x4F51E91A +#define PHY_ID_YT8521 0x0000011a +#define PHY_ID_YT8531S 0x4f51e91a /* YT8521/YT8531S Register Overview * UTP Register space | FIBER Register space |
