summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell King <rmk+kernel@armlinux.org.uk>2020-07-30 22:50:04 +0100
committerRussell King (Oracle) <rmk+kernel@armlinux.org.uk>2022-06-21 10:58:11 +0100
commit6cc3c507b510efe1b6b0f36fca3b3c53d27f4a6a (patch)
tree064e867f8efe10cbe57a2034c2778a8d94e90240
parentcc4db8589c6bb0556002287f5e37fb4a3ae99157 (diff)
net: ethtool: allow MAC drivers to override ethtool get_ts_info
Check whether the MAC driver has implemented the get_ts_info() method first, and call it if present. If this method returns -EOPNOTSUPP, defer to the phylib or default implementation. XXX: review any drivers that use phylib and provide get_ts_info(). Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
-rw-r--r--net/ethtool/common.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/net/ethtool/common.c b/net/ethtool/common.c
index 0c5210015911..f7e48cf0d5a7 100644
--- a/net/ethtool/common.c
+++ b/net/ethtool/common.c
@@ -541,14 +541,18 @@ int __ethtool_get_ts_info(struct net_device *dev, struct ethtool_ts_info *info)
{
const struct ethtool_ops *ops = dev->ethtool_ops;
struct phy_device *phydev = dev->phydev;
+ int ret;
memset(info, 0, sizeof(*info));
info->cmd = ETHTOOL_GET_TS_INFO;
+ if (ops->get_ts_info) {
+ ret = ops->get_ts_info(dev, info);
+ if (ret != -EOPNOTSUPP)
+ return ret;
+ }
if (phy_has_tsinfo(phydev))
return phy_ts_info(phydev, info);
- if (ops->get_ts_info)
- return ops->get_ts_info(dev, info);
info->so_timestamping = SOF_TIMESTAMPING_RX_SOFTWARE |
SOF_TIMESTAMPING_SOFTWARE;