*/
                while (unlikely(size > ICE_MAX_DATA_PER_TXD)) {
                        tx_desc->cmd_type_offset_bsz =
-                               build_ctob(td_cmd, td_offset, max_data, td_tag);
+                               ice_build_ctob(td_cmd, td_offset, max_data,
+                                              td_tag);
 
                        tx_desc++;
                        i++;
                if (likely(!data_len))
                        break;
 
-               tx_desc->cmd_type_offset_bsz = build_ctob(td_cmd, td_offset,
-                                                         size, td_tag);
+               tx_desc->cmd_type_offset_bsz = ice_build_ctob(td_cmd, td_offset,
+                                                             size, td_tag);
 
                tx_desc++;
                i++;
 
        /* write last descriptor with RS and EOP bits */
        td_cmd |= (u64)ICE_TXD_LAST_DESC_CMD;
-       tx_desc->cmd_type_offset_bsz = build_ctob(td_cmd, td_offset, size,
-                                                 td_tag);
+       tx_desc->cmd_type_offset_bsz =
+                       ice_build_ctob(td_cmd, td_offset, size, td_tag);
 
        /* Force memory writes to complete before letting h/w know there
         * are new descriptors to fetch.
 
 
        tx_desc = ICE_TX_DESC(xdp_ring, i);
        tx_desc->buf_addr = cpu_to_le64(dma);
-       tx_desc->cmd_type_offset_bsz = build_ctob(ICE_TXD_LAST_DESC_CMD, 0,
-                                                 size, 0);
+       tx_desc->cmd_type_offset_bsz = ice_build_ctob(ICE_TXD_LAST_DESC_CMD, 0,
+                                                     size, 0);
 
        /* Make certain all of the status bits have been updated
         * before next_to_watch is written.
 
 }
 
 static inline __le64
-build_ctob(u64 td_cmd, u64 td_offset, unsigned int size, u64 td_tag)
+ice_build_ctob(u64 td_cmd, u64 td_offset, unsigned int size, u64 td_tag)
 {
        return cpu_to_le64(ICE_TX_DESC_DTYPE_DATA |
                           (td_cmd    << ICE_TXD_QW1_CMD_S) |
 
 
                tx_desc = ICE_TX_DESC(xdp_ring, xdp_ring->next_to_use);
                tx_desc->buf_addr = cpu_to_le64(dma);
-               tx_desc->cmd_type_offset_bsz = build_ctob(ICE_TXD_LAST_DESC_CMD,
-                                                         0, desc.len, 0);
+               tx_desc->cmd_type_offset_bsz =
+                       ice_build_ctob(ICE_TXD_LAST_DESC_CMD, 0, desc.len, 0);
 
                xdp_ring->next_to_use++;
                if (xdp_ring->next_to_use == xdp_ring->count)