aboutsummaryrefslogtreecommitdiff
path: root/drivers/net/phy
diff options
context:
space:
mode:
authorVenkatesh Yadav Abbarapu <venkatesh.abbarapu@amd.com>2023-10-10 08:34:36 +0530
committerMichal Simek <michal.simek@amd.com>2023-10-10 14:57:29 +0200
commit950fc4a58b236b8986893a660e799a06024e5eee (patch)
treeb5f7f779d57fa219a47870ef512b94aeb44e0dc1 /drivers/net/phy
parentfacfa5659b4dfbfffa91283a1234297a744bf28a (diff)
downloadu-boot-950fc4a58b236b8986893a660e799a06024e5eee.zip
u-boot-950fc4a58b236b8986893a660e799a06024e5eee.tar.gz
u-boot-950fc4a58b236b8986893a660e799a06024e5eee.tar.bz2
net: phy: xilinx_phy: Get rid of using property xlnx, phy-type
As the xlnx,phy-type device tree property is deprecated and phy-mode is being used, so removing the code references of xlnx,phy-type. Signed-off-by: Venkatesh Yadav Abbarapu <venkatesh.abbarapu@amd.com> Link: https://lore.kernel.org/r/20231010030436.11854-1-venkatesh.abbarapu@amd.com Signed-off-by: Michal Simek <michal.simek@amd.com>
Diffstat (limited to 'drivers/net/phy')
-rw-r--r--drivers/net/phy/xilinx_phy.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/net/phy/xilinx_phy.c b/drivers/net/phy/xilinx_phy.c
index 1df639d..c07c780 100644
--- a/drivers/net/phy/xilinx_phy.c
+++ b/drivers/net/phy/xilinx_phy.c
@@ -99,7 +99,6 @@ static int xilinxphy_startup(struct phy_device *phydev)
static int xilinxphy_of_init(struct phy_device *phydev)
{
- u32 phytype;
ofnode node;
debug("%s\n", __func__);
@@ -107,10 +106,6 @@ static int xilinxphy_of_init(struct phy_device *phydev)
if (!ofnode_valid(node))
return -EINVAL;
- phytype = ofnode_read_u32_default(node, "xlnx,phy-type", -1);
- if (phytype == XAE_PHY_TYPE_1000BASE_X)
- phydev->flags |= XAE_PHY_TYPE_1000BASE_X;
-
return 0;
}