cris: Replace do_posix_clock_monotonic_gettime()
ktime_get_ts() is the proper interface today. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Jesper Nilsson <jesper.nilsson@axis.com>
This commit is contained in:
parent
37b64a4206
commit
0ec62aaee9
1 changed files with 1 additions and 1 deletions
|
@ -1464,7 +1464,7 @@ static inline void handle_rx_packet(struct sync_port *port)
|
||||||
if (port->write_ts_idx == NBR_IN_DESCR)
|
if (port->write_ts_idx == NBR_IN_DESCR)
|
||||||
port->write_ts_idx = 0;
|
port->write_ts_idx = 0;
|
||||||
idx = port->write_ts_idx++;
|
idx = port->write_ts_idx++;
|
||||||
do_posix_clock_monotonic_gettime(&port->timestamp[idx]);
|
ktime_get_ts(&port->timestamp[idx]);
|
||||||
port->in_buffer_len += port->inbufchunk;
|
port->in_buffer_len += port->inbufchunk;
|
||||||
}
|
}
|
||||||
spin_unlock_irqrestore(&port->lock, flags);
|
spin_unlock_irqrestore(&port->lock, flags);
|
||||||
|
|
Loading…
Add table
Reference in a new issue