net/qede/base: remove unused input parameter
Remove unused input parameter from ecore_dcbx_info_free(). Signed-off-by: Rasesh Mody <rasesh.mody@cavium.com>
This commit is contained in:
parent
2fdeb693de
commit
5f4504bffb
@ -925,8 +925,7 @@ enum _ecore_status_t ecore_dcbx_info_alloc(struct ecore_hwfn *p_hwfn)
|
||||
return ECORE_SUCCESS;
|
||||
}
|
||||
|
||||
void ecore_dcbx_info_free(struct ecore_hwfn *p_hwfn,
|
||||
struct ecore_dcbx_info *p_dcbx_info)
|
||||
void ecore_dcbx_info_free(struct ecore_hwfn *p_hwfn)
|
||||
{
|
||||
OSAL_FREE(p_hwfn->p_dev, p_hwfn->p_dcbx_info);
|
||||
}
|
||||
|
@ -50,7 +50,7 @@ ecore_dcbx_mib_update_event(struct ecore_hwfn *, struct ecore_ptt *,
|
||||
enum ecore_mib_read_type);
|
||||
|
||||
enum _ecore_status_t ecore_dcbx_info_alloc(struct ecore_hwfn *p_hwfn);
|
||||
void ecore_dcbx_info_free(struct ecore_hwfn *, struct ecore_dcbx_info *);
|
||||
void ecore_dcbx_info_free(struct ecore_hwfn *p_hwfn);
|
||||
void ecore_dcbx_set_pf_update_params(struct ecore_dcbx_results *p_src,
|
||||
struct pf_update_ramrod_data *p_dest);
|
||||
|
||||
|
@ -472,7 +472,7 @@ void ecore_resc_free(struct ecore_dev *p_dev)
|
||||
ecore_iov_free(p_hwfn);
|
||||
ecore_l2_free(p_hwfn);
|
||||
ecore_dmae_info_free(p_hwfn);
|
||||
ecore_dcbx_info_free(p_hwfn, p_hwfn->p_dcbx_info);
|
||||
ecore_dcbx_info_free(p_hwfn);
|
||||
/* @@@TBD Flush work-queue ? */
|
||||
|
||||
/* destroy doorbell recovery mechanism */
|
||||
|
Loading…
x
Reference in New Issue
Block a user