Commit ef860480 authored by Tony Nguyen's avatar Tony Nguyen
Browse files

ice: Fix prototype warnings



Correct reported warnings for "warning: expecting prototype for ...
Prototype was for ... instead"

Signed-off-by: default avatarTony Nguyen <anthony.l.nguyen@intel.com>
Tested-by: default avatarTony Brelinski <tonyx.brelinski@intel.com>
parent 9a255a06
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4373,7 +4373,7 @@ ice_aq_set_lldp_mib(struct ice_hw *hw, u8 mib_type, void *buf, u16 buf_size,
}

/**
 * ice_fw_supports_lldp_fltr - check NVM version supports lldp_fltr_ctrl
 * ice_fw_supports_lldp_fltr_ctrl - check NVM version supports lldp_fltr_ctrl
 * @hw: pointer to HW struct
 */
bool ice_fw_supports_lldp_fltr_ctrl(struct ice_hw *hw)
+1 −1
Original line number Diff line number Diff line
@@ -834,7 +834,7 @@ ice_cee_to_dcb_cfg(struct ice_aqc_get_cee_dcb_cfg_resp *cee_cfg,
}

/**
 * ice_get_ieee_dcb_cfg
 * ice_get_ieee_or_cee_dcb_cfg
 * @pi: port information structure
 * @dcbx_mode: mode of DCBX (IEEE or CEE)
 *
+1 −1
Original line number Diff line number Diff line
@@ -1135,7 +1135,7 @@ bool ice_fdir_has_frag(enum ice_fltr_ptype flow)
}

/**
 * ice_fdir_find_by_idx - find filter with idx
 * ice_fdir_find_fltr_by_idx - find filter with idx
 * @hw: pointer to hardware structure
 * @fltr_idx: index to find.
 *
+2 −2
Original line number Diff line number Diff line
@@ -1044,7 +1044,7 @@ struct ice_aq_task {
};

/**
 * ice_wait_for_aq_event - Wait for an AdminQ event from firmware
 * ice_aq_wait_for_event - Wait for an AdminQ event from firmware
 * @pf: pointer to the PF private structure
 * @opcode: the opcode to wait for
 * @timeout: how long to wait, in jiffies
@@ -4321,7 +4321,7 @@ static void ice_set_wake(struct ice_pf *pf)
}

/**
 * ice_setup_magic_mc_wake - setup device to wake on multicast magic packet
 * ice_setup_mc_magic_wake - setup device to wake on multicast magic packet
 * @pf: pointer to the PF struct
 *
 * Issue firmware command to enable multicast magic wake, making
+1 −1
Original line number Diff line number Diff line
@@ -1857,7 +1857,7 @@ ice_sched_cfg_vsi(struct ice_port_info *pi, u16 vsi_handle, u8 tc, u16 maxqs,
}

/**
 * ice_sched_rm_agg_vsi_entry - remove aggregator related VSI info entry
 * ice_sched_rm_agg_vsi_info - remove aggregator related VSI info entry
 * @pi: port information structure
 * @vsi_handle: software VSI handle
 *
Loading