Skip to content

Commit

Permalink
ptp: remove 32 bit get/set methods.
Browse files Browse the repository at this point in the history
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 <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
  • Loading branch information
richardcochran authored and davem330 committed Mar 31, 2015
1 parent a043a72 commit ed7c631
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 26 deletions.
8 changes: 1 addition & 7 deletions drivers/ptp/ptp_chardev.c
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,6 @@ long ptp_ioctl(struct posix_clock *pc, unsigned int cmd, unsigned long arg)
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;

Expand Down Expand Up @@ -202,12 +201,7 @@ long ptp_ioctl(struct posix_clock *pc, unsigned int cmd, unsigned long arg)
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++;
Expand Down
15 changes: 4 additions & 11 deletions drivers/ptp/ptp_clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,9 +109,7 @@ static int ptp_clock_settime(struct posix_clock *pc, const struct timespec *tp)
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)
Expand All @@ -120,14 +118,9 @@ 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;
}

Expand Down
8 changes: 0 additions & 8 deletions include/linux/ptp_clock_kernel.h
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit ed7c631

Please sign in to comment.