mirror of https://gitee.com/openkylin/linux.git
bnxt_en: Clean up unused functions.
Remove unused bnxt_subtract_ulp_resources(). Change bnxt_get_max_func_irqs() to static since it is only locally used. Signed-off-by: Michael Chan <michael.chan@broadcom.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6b95c3e969
commit
ad95c27bdb
|
@ -5918,7 +5918,7 @@ void bnxt_set_max_func_cp_rings(struct bnxt *bp, unsigned int max)
|
||||||
bp->hw_resc.max_cp_rings = max;
|
bp->hw_resc.max_cp_rings = max;
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int bnxt_get_max_func_irqs(struct bnxt *bp)
|
static unsigned int bnxt_get_max_func_irqs(struct bnxt *bp)
|
||||||
{
|
{
|
||||||
struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
|
struct bnxt_hw_resc *hw_resc = &bp->hw_resc;
|
||||||
|
|
||||||
|
|
|
@ -1482,7 +1482,6 @@ unsigned int bnxt_get_max_func_stat_ctxs(struct bnxt *bp);
|
||||||
void bnxt_set_max_func_stat_ctxs(struct bnxt *bp, unsigned int max);
|
void bnxt_set_max_func_stat_ctxs(struct bnxt *bp, unsigned int max);
|
||||||
unsigned int bnxt_get_max_func_cp_rings(struct bnxt *bp);
|
unsigned int bnxt_get_max_func_cp_rings(struct bnxt *bp);
|
||||||
void bnxt_set_max_func_cp_rings(struct bnxt *bp, unsigned int max);
|
void bnxt_set_max_func_cp_rings(struct bnxt *bp, unsigned int max);
|
||||||
unsigned int bnxt_get_max_func_irqs(struct bnxt *bp);
|
|
||||||
int bnxt_get_avail_msix(struct bnxt *bp, int num);
|
int bnxt_get_avail_msix(struct bnxt *bp, int num);
|
||||||
int bnxt_reserve_rings(struct bnxt *bp);
|
int bnxt_reserve_rings(struct bnxt *bp);
|
||||||
void bnxt_tx_disable(struct bnxt *bp);
|
void bnxt_tx_disable(struct bnxt *bp);
|
||||||
|
|
|
@ -220,21 +220,6 @@ int bnxt_get_ulp_msix_base(struct bnxt *bp)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
void bnxt_subtract_ulp_resources(struct bnxt *bp, int ulp_id)
|
|
||||||
{
|
|
||||||
ASSERT_RTNL();
|
|
||||||
if (bnxt_ulp_registered(bp->edev, ulp_id)) {
|
|
||||||
struct bnxt_en_dev *edev = bp->edev;
|
|
||||||
unsigned int msix_req, max;
|
|
||||||
|
|
||||||
msix_req = edev->ulp_tbl[ulp_id].msix_requested;
|
|
||||||
max = bnxt_get_max_func_cp_rings(bp);
|
|
||||||
bnxt_set_max_func_cp_rings(bp, max - msix_req);
|
|
||||||
max = bnxt_get_max_func_stat_ctxs(bp);
|
|
||||||
bnxt_set_max_func_stat_ctxs(bp, max - 1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
static int bnxt_send_msg(struct bnxt_en_dev *edev, int ulp_id,
|
static int bnxt_send_msg(struct bnxt_en_dev *edev, int ulp_id,
|
||||||
struct bnxt_fw_msg *fw_msg)
|
struct bnxt_fw_msg *fw_msg)
|
||||||
{
|
{
|
||||||
|
|
|
@ -90,7 +90,6 @@ static inline bool bnxt_ulp_registered(struct bnxt_en_dev *edev, int ulp_id)
|
||||||
|
|
||||||
int bnxt_get_ulp_msix_num(struct bnxt *bp);
|
int bnxt_get_ulp_msix_num(struct bnxt *bp);
|
||||||
int bnxt_get_ulp_msix_base(struct bnxt *bp);
|
int bnxt_get_ulp_msix_base(struct bnxt *bp);
|
||||||
void bnxt_subtract_ulp_resources(struct bnxt *bp, int ulp_id);
|
|
||||||
void bnxt_ulp_stop(struct bnxt *bp);
|
void bnxt_ulp_stop(struct bnxt *bp);
|
||||||
void bnxt_ulp_start(struct bnxt *bp);
|
void bnxt_ulp_start(struct bnxt *bp);
|
||||||
void bnxt_ulp_sriov_cfg(struct bnxt *bp, int num_vfs);
|
void bnxt_ulp_sriov_cfg(struct bnxt *bp, int num_vfs);
|
||||||
|
|
Loading…
Reference in New Issue