aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/ptp_clock_kernel.h
diff options
context:
space:
mode:
authorRichard Cochran <richardcochran@gmail.com>2015-03-29 17:12:13 -0400
committerDavid S. Miller <davem@davemloft.net>2015-03-31 12:01:19 -0400
commited7c6317bc599502e1fdc7f5f95cb9a5550360a4 (patch)
tree7e9d6452f150edd63d2a6f911b355152f6d0fb60 /include/linux/ptp_clock_kernel.h
parenta043a72909b9ed9b3505f3be42d5329cea50c273 (diff)
ptp: remove 32 bit get/set methods.
All of the PHC drivers have been converted to the new methods. This patch converts the three remaining callers within the core code and removes the older methods for good. As a result, the core PHC code is ready for the year 2038. However, some of the PHC drivers are not quite ready yet. Signed-off-by: Richard Cochran <richardcochran@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/ptp_clock_kernel.h')
-rw-r--r--include/linux/ptp_clock_kernel.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/linux/ptp_clock_kernel.h b/include/linux/ptp_clock_kernel.h
index 7d6f8e66396f..b8b73066d137 100644
--- a/include/linux/ptp_clock_kernel.h
+++ b/include/linux/ptp_clock_kernel.h
@@ -64,12 +64,6 @@ struct ptp_clock_request {
64 * @adjtime: Shifts the time of the hardware clock. 64 * @adjtime: Shifts the time of the hardware clock.
65 * parameter delta: Desired change in nanoseconds. 65 * parameter delta: Desired change in nanoseconds.
66 * 66 *
67 * @gettime: Reads the current time from the hardware clock. (deprecated)
68 * parameter ts: Holds the result.
69 *
70 * @settime: Set the current time on the hardware clock. (deprecated)
71 * parameter ts: Time value to set.
72 *
73 * @gettime64: Reads the current time from the hardware clock. 67 * @gettime64: Reads the current time from the hardware clock.
74 * parameter ts: Holds the result. 68 * parameter ts: Holds the result.
75 * 69 *
@@ -110,8 +104,6 @@ struct ptp_clock_info {
110 struct ptp_pin_desc *pin_config; 104 struct ptp_pin_desc *pin_config;
111 int (*adjfreq)(struct ptp_clock_info *ptp, s32 delta); 105 int (*adjfreq)(struct ptp_clock_info *ptp, s32 delta);
112 int (*adjtime)(struct ptp_clock_info *ptp, s64 delta); 106 int (*adjtime)(struct ptp_clock_info *ptp, s64 delta);
113 int (*gettime)(struct ptp_clock_info *ptp, struct timespec *ts);
114 int (*settime)(struct ptp_clock_info *ptp, const struct timespec *ts);
115 int (*gettime64)(struct ptp_clock_info *ptp, struct timespec64 *ts); 107 int (*gettime64)(struct ptp_clock_info *ptp, struct timespec64 *ts);
116 int (*settime64)(struct ptp_clock_info *p, const struct timespec64 *ts); 108 int (*settime64)(struct ptp_clock_info *p, const struct timespec64 *ts);
117 int (*enable)(struct ptp_clock_info *ptp, 109 int (*enable)(struct ptp_clock_info *ptp,