aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/ptp/ptp_ixp46x.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/ptp/ptp_ixp46x.c b/drivers/ptp/ptp_ixp46x.c
index 604d340f2095..934c139916c6 100644
--- a/drivers/ptp/ptp_ixp46x.c
+++ b/drivers/ptp/ptp_ixp46x.c
@@ -175,7 +175,7 @@ static int ptp_ixp_adjtime(struct ptp_clock_info *ptp, s64 delta)
175 return 0; 175 return 0;
176} 176}
177 177
178static int ptp_ixp_gettime(struct ptp_clock_info *ptp, struct timespec *ts) 178static int ptp_ixp_gettime(struct ptp_clock_info *ptp, struct timespec64 *ts)
179{ 179{
180 u64 ns; 180 u64 ns;
181 u32 remainder; 181 u32 remainder;
@@ -195,7 +195,7 @@ static int ptp_ixp_gettime(struct ptp_clock_info *ptp, struct timespec *ts)
195} 195}
196 196
197static int ptp_ixp_settime(struct ptp_clock_info *ptp, 197static int ptp_ixp_settime(struct ptp_clock_info *ptp,
198 const struct timespec *ts) 198 const struct timespec64 *ts)
199{ 199{
200 u64 ns; 200 u64 ns;
201 unsigned long flags; 201 unsigned long flags;
@@ -248,8 +248,8 @@ static struct ptp_clock_info ptp_ixp_caps = {
248 .pps = 0, 248 .pps = 0,
249 .adjfreq = ptp_ixp_adjfreq, 249 .adjfreq = ptp_ixp_adjfreq,
250 .adjtime = ptp_ixp_adjtime, 250 .adjtime = ptp_ixp_adjtime,
251 .gettime = ptp_ixp_gettime, 251 .gettime64 = ptp_ixp_gettime,
252 .settime = ptp_ixp_settime, 252 .settime64 = ptp_ixp_settime,
253 .enable = ptp_ixp_enable, 253 .enable = ptp_ixp_enable,
254}; 254};
255 255