diff options
author | Siddharth Vadapalli <s-vadapalli@ti.com> | 2023-03-09 13:06:12 +0530 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2023-03-10 21:25:01 -0800 |
commit | bca93b20c3976ff5ca9fe373cf7acd0277492ae8 (patch) | |
tree | dd405704b26fef2f85803074c7792b8409d42340 /drivers/net/ethernet/ti | |
parent | aacaf7b3d19daaa91528ab0c598b89a7f82aa47d (diff) | |
download | linux-bca93b20c3976ff5ca9fe373cf7acd0277492ae8.tar.gz linux-bca93b20c3976ff5ca9fe373cf7acd0277492ae8.tar.bz2 linux-bca93b20c3976ff5ca9fe373cf7acd0277492ae8.zip |
net: ethernet: ti: am65-cpsw: Update name of Serdes PHY
The bindings for the am65-cpsw driver use the name "serdes" to refer to
the Serdes PHY. Thus, update the name used for the Serdes PHY within the
am65_cpsw_init_serdes_phy() function from "serdes-phy" to "serdes".
Signed-off-by: Siddharth Vadapalli <s-vadapalli@ti.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net/ethernet/ti')
-rw-r--r-- | drivers/net/ethernet/ti/am65-cpsw-nuss.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/ti/am65-cpsw-nuss.c b/drivers/net/ethernet/ti/am65-cpsw-nuss.c index 25996826edab..4cfbc1c2b1c4 100644 --- a/drivers/net/ethernet/ti/am65-cpsw-nuss.c +++ b/drivers/net/ethernet/ti/am65-cpsw-nuss.c @@ -1466,7 +1466,7 @@ static void am65_cpsw_disable_serdes_phy(struct am65_cpsw_common *common) static int am65_cpsw_init_serdes_phy(struct device *dev, struct device_node *port_np, struct am65_cpsw_port *port) { - const char *name = "serdes-phy"; + const char *name = "serdes"; struct phy *phy; int ret; |