mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 00:34:20 +08:00
net: phylink: handle NA interface mode in phylink_fwnode_phy_connect()
Commit 4904b6ea1f
("net: phy: phylink: Use PHY device interface if
N/A") introduced handling for the phy interface mode where this is not
known at phylink creation time. This was never added to the OF/fwnode
paths, but is necessary when the phy is present in DT, but the phy-mode
is not specified.
Add this handling.
Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Acked-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
291dcae39b
commit
a18e6521a7
@ -1325,7 +1325,8 @@ static int phylink_bringup_phy(struct phylink *pl, struct phy_device *phy,
|
||||
mutex_unlock(&phy->lock);
|
||||
|
||||
phylink_dbg(pl,
|
||||
"phy: setting supported %*pb advertising %*pb\n",
|
||||
"phy: %s setting supported %*pb advertising %*pb\n",
|
||||
phy_modes(interface),
|
||||
__ETHTOOL_LINK_MODE_MASK_NBITS, pl->supported,
|
||||
__ETHTOOL_LINK_MODE_MASK_NBITS, phy->advertising);
|
||||
|
||||
@ -1443,6 +1444,12 @@ int phylink_fwnode_phy_connect(struct phylink *pl,
|
||||
if (!phy_dev)
|
||||
return -ENODEV;
|
||||
|
||||
/* Use PHY device/driver interface */
|
||||
if (pl->link_interface == PHY_INTERFACE_MODE_NA) {
|
||||
pl->link_interface = phy_dev->interface;
|
||||
pl->link_config.interface = pl->link_interface;
|
||||
}
|
||||
|
||||
ret = phy_attach_direct(pl->netdev, phy_dev, flags,
|
||||
pl->link_interface);
|
||||
if (ret) {
|
||||
|
Loading…
Reference in New Issue
Block a user