Lines Matching full:timestamp
17 u32 timestamp = 0; in mcp251xfd_timestamp_read() local
21 err = mcp251xfd_get_timestamp(priv, ×tamp); in mcp251xfd_timestamp_read()
24 "Error %d while reading timestamp. HW timestamps may be inaccurate.", in mcp251xfd_timestamp_read()
27 return timestamp; in mcp251xfd_timestamp_read()
35 priv = container_of(delayed_work, struct mcp251xfd_priv, timestamp); in mcp251xfd_timestamp_work()
38 schedule_delayed_work(&priv->timestamp, in mcp251xfd_timestamp_work()
43 struct sk_buff *skb, u32 timestamp) in mcp251xfd_skb_set_timestamp() argument
48 ns = timecounter_cyc2time(&priv->tc, timestamp); in mcp251xfd_skb_set_timestamp()
63 INIT_DELAYED_WORK(&priv->timestamp, mcp251xfd_timestamp_work); in mcp251xfd_timestamp_init()
64 schedule_delayed_work(&priv->timestamp, in mcp251xfd_timestamp_init()
70 cancel_delayed_work_sync(&priv->timestamp); in mcp251xfd_timestamp_stop()