diff options
author | Arnd Bergmann <arnd@arndb.de> | 2018-06-18 17:20:39 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-06-20 01:59:53 +0300 |
commit | f696a21c229ac3e85bc239efc52f4530b43002c5 (patch) | |
tree | 468dd0613b3c9781a322164399acb2d34c0cd1cb /drivers/ptp/ptp_qoriq.c | |
parent | 9b0a8da8c4c6e91012ab03a801acc5d8011c7c2f (diff) | |
download | linux-f696a21c229ac3e85bc239efc52f4530b43002c5.tar.xz |
ptp: replace getnstimeofday64() with ktime_get_real_ts64()
getnstimeofday64() is deprecated and getting replaced throughout
the kernel with ktime_get_*() based helpers for a more consistent
interface.
The two functions do the exact same thing, so this is just
a cosmetic change.
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Richard Cochran <richardcochran@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/ptp/ptp_qoriq.c')
-rw-r--r-- | drivers/ptp/ptp_qoriq.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/ptp/ptp_qoriq.c b/drivers/ptp/ptp_qoriq.c index 1468a1642b49..e8652c148c52 100644 --- a/drivers/ptp/ptp_qoriq.c +++ b/drivers/ptp/ptp_qoriq.c @@ -374,7 +374,7 @@ static int qoriq_ptp_probe(struct platform_device *dev) pr_err("ioremap ptp registers failed\n"); goto no_ioremap; } - getnstimeofday64(&now); + ktime_get_real_ts64(&now); ptp_qoriq_settime(&qoriq_ptp->caps, &now); tmr_ctrl = |