struct ptp_clock_info *ops = ptp->info;
struct ptp_clock_time *pct;
struct timespec64 ts;
- struct timespec t2;
int enable, err = 0;
unsigned int i, pin_index;
pct->sec = ts.tv_sec;
pct->nsec = ts.tv_nsec;
pct++;
- if (ptp->info->gettime64) {
- ptp->info->gettime64(ptp->info, &ts);
- } else {
- ptp->info->gettime(ptp->info, &t2);
- ts = timespec_to_timespec64(t2);
- }
+ ptp->info->gettime64(ptp->info, &ts);
pct->sec = ts.tv_sec;
pct->nsec = ts.tv_nsec;
pct++;
struct ptp_clock *ptp = container_of(pc, struct ptp_clock, clock);
struct timespec64 ts = timespec_to_timespec64(*tp);
- return ptp->info->settime64 ?
- ptp->info->settime64(ptp->info, &ts) :
- ptp->info->settime(ptp->info, tp);
+ return ptp->info->settime64(ptp->info, &ts);
}
static int ptp_clock_gettime(struct posix_clock *pc, struct timespec *tp)
struct timespec64 ts;
int err;
- if (ptp->info->gettime64) {
- err = ptp->info->gettime64(ptp->info, &ts);
- if (!err)
- *tp = timespec64_to_timespec(ts);
- } else {
- err = ptp->info->gettime(ptp->info, tp);
- }
-
+ err = ptp->info->gettime64(ptp->info, &ts);
+ if (!err)
+ *tp = timespec64_to_timespec(ts);
return err;
}
* @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.
*
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,