Rename the rx_offload_get_echo_skb() function to
can_rx_offload_get_echo_skb_queue_timestamp(), since it inserts the
echo skb into the rx-offload queue sorted by timestamp.
This is a preparation for adding
can_rx_offload_get_echo_skb_queue_tail(), which adds the echo skb to
the end of the queue. This is intended for devices that do not support
timestamps.
Link: https://lore.kernel.org/all/20230718-gs_usb-rx-offload-v2-1-716e542d14d5@pengutronix.de
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
 }
 EXPORT_SYMBOL_GPL(can_rx_offload_queue_timestamp);
 
-unsigned int can_rx_offload_get_echo_skb(struct can_rx_offload *offload,
-                                        unsigned int idx, u32 timestamp,
-                                        unsigned int *frame_len_ptr)
+unsigned int
+can_rx_offload_get_echo_skb_queue_timestamp(struct can_rx_offload *offload,
+                                           unsigned int idx, u32 timestamp,
+                                           unsigned int *frame_len_ptr)
 {
        struct net_device *dev = offload->dev;
        struct net_device_stats *stats = &dev->stats;
 
        return len;
 }
-EXPORT_SYMBOL_GPL(can_rx_offload_get_echo_skb);
+EXPORT_SYMBOL_GPL(can_rx_offload_get_echo_skb_queue_timestamp);
 
 int can_rx_offload_queue_tail(struct can_rx_offload *offload,
                              struct sk_buff *skb)
 
 
                handled = IRQ_HANDLED;
                stats->tx_bytes +=
-                       can_rx_offload_get_echo_skb(&priv->offload, 0,
-                                                   reg_ctrl << 16, NULL);
+                       can_rx_offload_get_echo_skb_queue_timestamp(&priv->offload, 0,
+                                                                   reg_ctrl << 16, NULL);
                stats->tx_packets++;
 
                /* after sending a RTR frame MB is in RX mode */
 
 
        if (cdev->is_peripheral)
                stats->tx_bytes +=
-                       can_rx_offload_get_echo_skb(&cdev->offload,
-                                                   msg_mark,
-                                                   timestamp,
-                                                   NULL);
+                       can_rx_offload_get_echo_skb_queue_timestamp(&cdev->offload,
+                                                                   msg_mark,
+                                                                   timestamp,
+                                                                   NULL);
        else
                stats->tx_bytes += can_get_echo_skb(dev, msg_mark, NULL);
 
 
        if (skb)
                mcp251xfd_skb_set_timestamp(priv, skb, hw_tef_obj->ts);
        stats->tx_bytes +=
-               can_rx_offload_get_echo_skb(&priv->offload,
-                                           tef_tail, hw_tef_obj->ts,
-                                           frame_len_ptr);
+               can_rx_offload_get_echo_skb_queue_timestamp(&priv->offload,
+                                                           tef_tail, hw_tef_obj->ts,
+                                                           frame_len_ptr);
        stats->tx_packets++;
        priv->tef->tail++;
 
 
                        spin_unlock_irqrestore(&priv->mbx_lock, flags);
                        stamp = hecc_read_stamp(priv, mbxno);
                        stats->tx_bytes +=
-                               can_rx_offload_get_echo_skb(&priv->offload,
-                                                           mbxno, stamp, NULL);
+                               can_rx_offload_get_echo_skb_queue_timestamp(&priv->offload,
+                                                                           mbxno, stamp, NULL);
                        stats->tx_packets++;
                        --priv->tx_tail;
                }
 
 int can_rx_offload_irq_offload_fifo(struct can_rx_offload *offload);
 int can_rx_offload_queue_timestamp(struct can_rx_offload *offload,
                                   struct sk_buff *skb, u32 timestamp);
-unsigned int can_rx_offload_get_echo_skb(struct can_rx_offload *offload,
-                                        unsigned int idx, u32 timestamp,
-                                        unsigned int *frame_len_ptr);
+unsigned int can_rx_offload_get_echo_skb_queue_timestamp(struct can_rx_offload *offload,
+                                                        unsigned int idx, u32 timestamp,
+                                                        unsigned int *frame_len_ptr);
 int can_rx_offload_queue_tail(struct can_rx_offload *offload,
                              struct sk_buff *skb);
 void can_rx_offload_irq_finish(struct can_rx_offload *offload);