diff options
author | Richard Cochran <richardcochran@gmail.com> | 2012-07-22 07:15:40 (GMT) |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-07-22 19:33:32 (GMT) |
commit | e10df2c63b5500ac32a250bb54f55b764abacf0d (patch) | |
tree | 473506c7453e3475029b04f8f3bb5a3e5908bcaa | |
parent | be53ce1edde13599105c1de88c5bd593d26dfe22 (diff) | |
download | linux-fsl-qoriq-e10df2c63b5500ac32a250bb54f55b764abacf0d.tar.xz |
e1000: advertise transmit time stamping
This driver now offers software transmit time stamping, so it should
advertise that fact via ethtool. Compile tested only.
Signed-off-by: Richard Cochran <richardcochran@gmail.com>
Cc: Willem de Bruijn <willemb@google.com>
Cc: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Cc: e1000-devel@lists.sourceforge.net
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/intel/e1000/e1000_ethtool.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/e1000/e1000_ethtool.c b/drivers/net/ethernet/intel/e1000/e1000_ethtool.c index 3103f0b..736a7d9 100644 --- a/drivers/net/ethernet/intel/e1000/e1000_ethtool.c +++ b/drivers/net/ethernet/intel/e1000/e1000_ethtool.c @@ -1851,6 +1851,7 @@ static const struct ethtool_ops e1000_ethtool_ops = { .get_sset_count = e1000_get_sset_count, .get_coalesce = e1000_get_coalesce, .set_coalesce = e1000_set_coalesce, + .get_ts_info = ethtool_op_get_ts_info, }; void e1000_set_ethtool_ops(struct net_device *netdev) |