aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/ptp/ptp_chardev.c
diff options
context:
space:
mode:
authorRichard Cochran <richardcochran@gmail.com>2015-03-29 23:12:13 +0200
committerDavid S. Miller <davem@davemloft.net>2015-03-31 12:01:19 -0400
commited7c6317bc599502e1fdc7f5f95cb9a5550360a4 (patch)
tree7e9d6452f150edd63d2a6f911b355152f6d0fb60 /drivers/ptp/ptp_chardev.c
parentptp: pch: convert to the 64 bit get/set time methods. (diff)
downloadlinux-dev-ed7c6317bc599502e1fdc7f5f95cb9a5550360a4.tar.xz
linux-dev-ed7c6317bc599502e1fdc7f5f95cb9a5550360a4.zip
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 'drivers/ptp/ptp_chardev.c')
-rw-r--r--drivers/ptp/ptp_chardev.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/drivers/ptp/ptp_chardev.c b/drivers/ptp/ptp_chardev.c
index 95bcf1525a84..da7bae991552 100644
--- a/drivers/ptp/ptp_chardev.c
+++ b/drivers/ptp/ptp_chardev.c
@@ -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;
@@ -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++;