/* End of FW Admin Queue command wrappers */
 
 /**
- * ice_write_byte - write a byte to a packed context structure
- * @src_ctx:  the context structure to read from
- * @dest_ctx: the context to be written to
- * @ce_info:  a description of the struct to be filled
+ * ice_pack_ctx_byte - write a byte to a packed context structure
+ * @src_ctx: unpacked source context structure
+ * @dest_ctx: packed destination context data
+ * @ce_info: context element description
  */
-static void
-ice_write_byte(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
+static void ice_pack_ctx_byte(u8 *src_ctx, u8 *dest_ctx,
+                             const struct ice_ctx_ele *ce_info)
 {
        u8 src_byte, dest_byte, mask;
        u8 *from, *dest;
 }
 
 /**
- * ice_write_word - write a word to a packed context structure
- * @src_ctx:  the context structure to read from
- * @dest_ctx: the context to be written to
- * @ce_info:  a description of the struct to be filled
+ * ice_pack_ctx_word - write a word to a packed context structure
+ * @src_ctx: unpacked source context structure
+ * @dest_ctx: packed destination context data
+ * @ce_info: context element description
  */
-static void
-ice_write_word(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
+static void ice_pack_ctx_word(u8 *src_ctx, u8 *dest_ctx,
+                             const struct ice_ctx_ele *ce_info)
 {
        u16 src_word, mask;
        __le16 dest_word;
 }
 
 /**
- * ice_write_dword - write a dword to a packed context structure
- * @src_ctx:  the context structure to read from
- * @dest_ctx: the context to be written to
- * @ce_info:  a description of the struct to be filled
+ * ice_pack_ctx_dword - write a dword to a packed context structure
+ * @src_ctx: unpacked source context structure
+ * @dest_ctx: packed destination context data
+ * @ce_info: context element description
  */
-static void
-ice_write_dword(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
+static void ice_pack_ctx_dword(u8 *src_ctx, u8 *dest_ctx,
+                              const struct ice_ctx_ele *ce_info)
 {
        u32 src_dword, mask;
        __le32 dest_dword;
 }
 
 /**
- * ice_write_qword - write a qword to a packed context structure
- * @src_ctx:  the context structure to read from
- * @dest_ctx: the context to be written to
- * @ce_info:  a description of the struct to be filled
+ * ice_pack_ctx_qword - write a qword to a packed context structure
+ * @src_ctx: unpacked source context structure
+ * @dest_ctx: packed destination context data
+ * @ce_info: context element description
  */
-static void
-ice_write_qword(u8 *src_ctx, u8 *dest_ctx, const struct ice_ctx_ele *ce_info)
+static void ice_pack_ctx_qword(u8 *src_ctx, u8 *dest_ctx,
+                              const struct ice_ctx_ele *ce_info)
 {
        u64 src_qword, mask;
        __le64 dest_qword;
                }
                switch (ce_info[f].size_of) {
                case sizeof(u8):
-                       ice_write_byte(src_ctx, dest_ctx, &ce_info[f]);
+                       ice_pack_ctx_byte(src_ctx, dest_ctx, &ce_info[f]);
                        break;
                case sizeof(u16):
-                       ice_write_word(src_ctx, dest_ctx, &ce_info[f]);
+                       ice_pack_ctx_word(src_ctx, dest_ctx, &ce_info[f]);
                        break;
                case sizeof(u32):
-                       ice_write_dword(src_ctx, dest_ctx, &ce_info[f]);
+                       ice_pack_ctx_dword(src_ctx, dest_ctx, &ce_info[f]);
                        break;
                case sizeof(u64):
-                       ice_write_qword(src_ctx, dest_ctx, &ce_info[f]);
+                       ice_pack_ctx_qword(src_ctx, dest_ctx, &ce_info[f]);
                        break;
                default:
                        return -EINVAL;