mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 21:38:32 +08:00
net: vlan: Use the PHY time stamping interface.
The vlan layer tests fields of the phy_device in order to determine whether to invoke the PHY's tsinfo ethtool callback. This patch replaces the open coded logic with an invocation of the proper methods. Signed-off-by: Richard Cochran <richardcochran@gmail.com> Reviewed-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
d25de984aa
commit
dfe6d68fc4
@ -646,8 +646,8 @@ static int vlan_ethtool_get_ts_info(struct net_device *dev,
|
|||||||
const struct ethtool_ops *ops = vlan->real_dev->ethtool_ops;
|
const struct ethtool_ops *ops = vlan->real_dev->ethtool_ops;
|
||||||
struct phy_device *phydev = vlan->real_dev->phydev;
|
struct phy_device *phydev = vlan->real_dev->phydev;
|
||||||
|
|
||||||
if (phydev && phydev->drv && phydev->drv->ts_info) {
|
if (phy_has_tsinfo(phydev)) {
|
||||||
return phydev->drv->ts_info(phydev, info);
|
return phy_ts_info(phydev, info);
|
||||||
} else if (ops->get_ts_info) {
|
} else if (ops->get_ts_info) {
|
||||||
return ops->get_ts_info(vlan->real_dev, info);
|
return ops->get_ts_info(vlan->real_dev, info);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user