#define I40E_SECTION_HEADER(profile, offset)                           \
        (struct i40e_profile_section_header *)((u8 *)(profile) + (offset))
 
-/**
- * i40e_find_section_in_profile
- * @section_type: the section type to search for (i.e., SECTION_TYPE_NOTE)
- * @profile: pointer to the i40e segment header to be searched
- *
- * This function searches i40e segment for a particular section type. On
- * success it returns a pointer to the section header, otherwise it will
- * return NULL.
- **/
-struct i40e_profile_section_header *
-i40e_find_section_in_profile(u32 section_type,
-                            struct i40e_profile_segment *profile)
-{
-       struct i40e_profile_section_header *sec;
-       struct i40e_section_table *sec_tbl;
-       u32 sec_off;
-       u32 i;
-
-       if (profile->header.type != SEGMENT_TYPE_I40E)
-               return NULL;
-
-       I40E_SECTION_TABLE(profile, sec_tbl);
-
-       for (i = 0; i < sec_tbl->section_count; i++) {
-               sec_off = sec_tbl->section_offset[i];
-               sec = I40E_SECTION_HEADER(profile, sec_off);
-               if (sec->section.type == section_type)
-                       return sec;
-       }
-
-       return NULL;
-}
-
 /**
  * i40e_ddp_exec_aq_section - Execute generic AQ for DDP
  * @hw: pointer to the hw struct
        return status;
 }
 
-/**
- * i40e_add_pinfo_to_list
- * @hw: pointer to the hardware structure
- * @profile: pointer to the profile segment of the package
- * @profile_info_sec: buffer for information section
- * @track_id: package tracking id
- *
- * Register a profile to the list of loaded profiles.
- */
-int
-i40e_add_pinfo_to_list(struct i40e_hw *hw,
-                      struct i40e_profile_segment *profile,
-                      u8 *profile_info_sec, u32 track_id)
-{
-       struct i40e_profile_section_header *sec = NULL;
-       struct i40e_profile_info *pinfo;
-       u32 offset = 0, info = 0;
-       int status = 0;
-
-       sec = (struct i40e_profile_section_header *)profile_info_sec;
-       sec->tbl_size = 1;
-       sec->data_end = sizeof(struct i40e_profile_section_header) +
-                       sizeof(struct i40e_profile_info);
-       sec->section.type = SECTION_TYPE_INFO;
-       sec->section.offset = sizeof(struct i40e_profile_section_header);
-       sec->section.size = sizeof(struct i40e_profile_info);
-       pinfo = (struct i40e_profile_info *)(profile_info_sec +
-                                            sec->section.offset);
-       pinfo->track_id = track_id;
-       pinfo->version = profile->version;
-       pinfo->op = I40E_DDP_ADD_TRACKID;
-       memcpy(pinfo->name, profile->name, I40E_DDP_NAME_SIZE);
-
-       status = i40e_aq_write_ddp(hw, (void *)sec, sec->data_end,
-                                  track_id, &offset, &info, NULL);
-
-       return status;
-}
-
 /**
  * i40e_aq_add_cloud_filters
  * @hw: pointer to the hardware structure
 
 struct i40e_generic_seg_header *
 i40e_find_segment_in_package(u32 segment_type,
                             struct i40e_package_header *pkg_header);
-struct i40e_profile_section_header *
-i40e_find_section_in_profile(u32 section_type,
-                            struct i40e_profile_segment *profile);
 int
 i40e_write_profile(struct i40e_hw *hw, struct i40e_profile_segment *i40e_seg,
                   u32 track_id);
 int
 i40e_rollback_profile(struct i40e_hw *hw, struct i40e_profile_segment *i40e_seg,
                      u32 track_id);
-int
-i40e_add_pinfo_to_list(struct i40e_hw *hw,
-                      struct i40e_profile_segment *profile,
-                      u8 *profile_info_sec, u32 track_id);
-
 /* i40e_ddp */
 int i40e_ddp_flash(struct net_device *netdev, struct ethtool_flash *flash);