mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 03:47:19 +07:00
ab91f0a9b5
This patch is based on original Harini's patch and Andrei's patch, implemented in a separate file to ease the review/maintanance and integration with other platforms. This driver supports GEM-GXL: - Register ptp clock framework - Initialize PTP related registers - HW time stamp on the PTP Ethernet packets are received using the SO_TIMESTAMPING API. Time stamps are obtained from the dma buffer descriptors - add macb_ptp to compilation chain Signed-off-by: Rafal Ozieblo <rafalo@cadence.com> Signed-off-by: David S. Miller <davem@davemloft.net>
12 lines
206 B
Makefile
12 lines
206 B
Makefile
#
|
|
# Makefile for the Atmel network device drivers.
|
|
#
|
|
macb-y := macb_main.o
|
|
|
|
ifeq ($(CONFIG_MACB_USE_HWSTAMP),y)
|
|
macb-y += macb_ptp.o
|
|
endif
|
|
|
|
obj-$(CONFIG_MACB) += macb.o
|
|
obj-$(CONFIG_MACB_PCI) += macb_pci.o
|