diff options
author | Richard Cochran <richardcochran@gmail.com> | 2019-12-26 03:16:20 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-12-26 04:51:34 +0100 |
commit | bad1eaa6ac312ffd7aa46dd5a4d9843b824aa023 (patch) | |
tree | de3033d12c14de2f97ca7a2442ff630e49c4ccad /drivers/ptp/Makefile | |
parent | net: Introduce peer to peer one step PTP time stamping. (diff) | |
download | linux-bad1eaa6ac312ffd7aa46dd5a4d9843b824aa023.tar.xz linux-bad1eaa6ac312ffd7aa46dd5a4d9843b824aa023.zip |
ptp: Add a driver for InES time stamping IP core.
The InES at the ZHAW offers a PTP time stamping IP core. The FPGA
logic recognizes and time stamps PTP frames on the MII bus. This
patch adds a driver for the core along with a device tree binding to
allow hooking the driver to MII buses.
Signed-off-by: Richard Cochran <richardcochran@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/ptp/Makefile')
-rw-r--r-- | drivers/ptp/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/ptp/Makefile b/drivers/ptp/Makefile index 69a06f86a450..3fb91bebbaf7 100644 --- a/drivers/ptp/Makefile +++ b/drivers/ptp/Makefile @@ -6,6 +6,7 @@ ptp-y := ptp_clock.o ptp_chardev.o ptp_sysfs.o obj-$(CONFIG_PTP_1588_CLOCK) += ptp.o obj-$(CONFIG_PTP_1588_CLOCK_DTE) += ptp_dte.o +obj-$(CONFIG_PTP_1588_CLOCK_INES) += ptp_ines.o obj-$(CONFIG_PTP_1588_CLOCK_IXP46X) += ptp_ixp46x.o obj-$(CONFIG_PTP_1588_CLOCK_PCH) += ptp_pch.o obj-$(CONFIG_PTP_1588_CLOCK_KVM) += ptp_kvm.o |