net/ionic: remove unused interrupt free function

This will conserve resources.

Signed-off-by: Andrew Boyer <aboyer@pensando.io>
This commit is contained in:
Andrew Boyer 2021-02-16 12:35:31 -08:00 committed by Ferruh Yigit
parent c6a9a6fb57
commit aeb70a00b1
2 changed files with 0 additions and 8 deletions

View File

@ -584,13 +584,6 @@ ionic_intr_alloc(struct ionic_lif *lif, struct ionic_intr_info *intr)
return 0;
}
void
ionic_intr_free(struct ionic_lif *lif, struct ionic_intr_info *intr)
{
if (intr->index != IONIC_INTR_NONE)
lif->adapter->intrs[intr->index] = false;
}
static int
ionic_qcq_alloc(struct ionic_lif *lif, uint8_t type,
uint32_t index,

View File

@ -152,7 +152,6 @@ void ionic_lif_configure_vlan_offload(struct ionic_lif *lif, int mask);
void ionic_lif_reset(struct ionic_lif *lif);
int ionic_intr_alloc(struct ionic_lif *lif, struct ionic_intr_info *intr);
void ionic_intr_free(struct ionic_lif *lif, struct ionic_intr_info *intr);
int ionic_qcq_service(struct ionic_qcq *qcq, int budget, ionic_cq_cb cb,
void *cb_arg);