net: netcp: ethss: get phy-handle only if link interface is MAC-to-PHY
Currently to parse phy-handle, driver doesn't check if the interface is MAC to PHY. This patch add this check for all MAC to PHY interface types supported by the driver. Signed-off-by: Murali Karicheri <m-karicheri2@ti.com> Signed-off-by: Sekhar Nori <nsekhar@ti.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6a8162e99e
commit
0cead3a6a1
@ -2930,7 +2930,9 @@ static int init_slave(struct gbe_priv *gbe_dev, struct gbe_slave *slave,
|
||||
}
|
||||
|
||||
slave->open = false;
|
||||
slave->phy_node = of_parse_phandle(node, "phy-handle", 0);
|
||||
if ((slave->link_interface == SGMII_LINK_MAC_PHY) ||
|
||||
(slave->link_interface == XGMII_LINK_MAC_PHY))
|
||||
slave->phy_node = of_parse_phandle(node, "phy-handle", 0);
|
||||
slave->port_num = gbe_get_slave_port(gbe_dev, slave->slave_num);
|
||||
|
||||
if (slave->link_interface >= XGMII_LINK_MAC_PHY)
|
||||
|
Loading…
x
Reference in New Issue
Block a user