Commit 4ca78e61 authored by John Fraker's avatar John Fraker Committed by David S. Miller
Browse files

gve: Correctly report software timestamping capabilities



gve has supported software timestamp generation since its inception,
but has not advertised that support via ethtool. This patch correctly
advertises that support.

Signed-off-by: default avatarJohn Fraker <jfraker@google.com>
Reviewed-by: default avatarHarshitha Ramamurthy <hramamurthy@google.com>
Reviewed-by: default avatarWillem de Bruijn <willemb@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4d0470b9
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -784,5 +784,6 @@ const struct ethtool_ops gve_ethtool_ops = {
	.set_tunable = gve_set_tunable,
	.get_priv_flags = gve_get_priv_flags,
	.set_priv_flags = gve_set_priv_flags,
	.get_link_ksettings = gve_get_link_ksettings
	.get_link_ksettings = gve_get_link_ksettings,
	.get_ts_info = ethtool_op_get_ts_info,
};