mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00

If the device supports reading of the nic clock, add support to initialize and register the PTP clock. Signed-off-by: Ziwei Xiao <ziweixiao@google.com> Reviewed-by: Willem de Bruijn <willemb@google.com> Signed-off-by: Harshitha Ramamurthy <hramamurthy@google.com> Link: https://patch.msgid.link/20250614000754.164827-4-hramamurthy@google.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
7 lines
275 B
Makefile
7 lines
275 B
Makefile
# Makefile for the Google virtual Ethernet (gve) driver
|
|
|
|
obj-$(CONFIG_GVE) += gve.o
|
|
gve-y := gve_main.o gve_tx.o gve_tx_dqo.o gve_rx.o gve_rx_dqo.o gve_ethtool.o gve_adminq.o gve_utils.o gve_flow_rule.o \
|
|
gve_buffer_mgmt_dqo.o
|
|
|
|
gve-$(CONFIG_PTP_1588_CLOCK) += gve_ptp.o
|