diff options
Diffstat (limited to 'backport/compat')
-rw-r--r-- | backport/compat/compat-3.5.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/backport/compat/compat-3.5.c b/backport/compat/compat-3.5.c index 95f52b98..f9590d73 100644 --- a/backport/compat/compat-3.5.c +++ b/backport/compat/compat-3.5.c @@ -12,6 +12,7 @@ #include <linux/highuid.h> #include <linux/ktime.h> #include <linux/hrtimer.h> +#include <linux/ptp_clock_kernel.h> #if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,2,0)) #include <linux/device.h> @@ -64,3 +65,11 @@ int overflowgid = DEFAULT_OVERFLOWGID; EXPORT_SYMBOL_GPL(overflowuid); EXPORT_SYMBOL_GPL(overflowgid); #endif + +#ifdef CONFIG_PTP_1588_CLOCK +int ptp_clock_index(struct ptp_clock *ptp) +{ + return ptp->index; +} +EXPORT_SYMBOL(ptp_clock_index); +#endif /* CONFIG_PTP_1588_CLOCK */ |