mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-22 23:04:43 +00:00
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>
This commit is contained in:
parent
a043a72909
commit
ed7c6317bc
3 changed files with 5 additions and 26 deletions
|
@ -64,12 +64,6 @@ struct ptp_clock_request {
|
|||
* @adjtime: Shifts the time of the hardware clock.
|
||||
* parameter delta: Desired change in nanoseconds.
|
||||
*
|
||||
* @gettime: Reads the current time from the hardware clock. (deprecated)
|
||||
* parameter ts: Holds the result.
|
||||
*
|
||||
* @settime: Set the current time on the hardware clock. (deprecated)
|
||||
* parameter ts: Time value to set.
|
||||
*
|
||||
* @gettime64: Reads the current time from the hardware clock.
|
||||
* parameter ts: Holds the result.
|
||||
*
|
||||
|
@ -110,8 +104,6 @@ struct ptp_clock_info {
|
|||
struct ptp_pin_desc *pin_config;
|
||||
int (*adjfreq)(struct ptp_clock_info *ptp, s32 delta);
|
||||
int (*adjtime)(struct ptp_clock_info *ptp, s64 delta);
|
||||
int (*gettime)(struct ptp_clock_info *ptp, struct timespec *ts);
|
||||
int (*settime)(struct ptp_clock_info *ptp, const struct timespec *ts);
|
||||
int (*gettime64)(struct ptp_clock_info *ptp, struct timespec64 *ts);
|
||||
int (*settime64)(struct ptp_clock_info *p, const struct timespec64 *ts);
|
||||
int (*enable)(struct ptp_clock_info *ptp,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue