Commit 6f544de6 authored by Ivan Vecera's avatar Ivan Vecera Committed by David S. Miller

bna: remove prio_change_cbfn oper_state_cbfn from struct bna_tx

Signed-off-by: default avatarIvan Vecera <ivecera@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f39857e1
...@@ -3000,16 +3000,6 @@ do { \ ...@@ -3000,16 +3000,6 @@ do { \
} \ } \
} while (0) } while (0)
#define call_tx_prio_change_cbfn(tx) \
do { \
if ((tx)->prio_change_cbfn) { \
void (*cbfn)(struct bnad *, struct bna_tx *); \
cbfn = (tx)->prio_change_cbfn; \
(tx)->prio_change_cbfn = NULL; \
cbfn((tx)->bna->bnad, (tx)); \
} \
} while (0)
static void bna_tx_mod_cb_tx_stopped(void *tx_mod, struct bna_tx *tx); static void bna_tx_mod_cb_tx_stopped(void *tx_mod, struct bna_tx *tx);
static void bna_bfi_tx_enet_start(struct bna_tx *tx); static void bna_bfi_tx_enet_start(struct bna_tx *tx);
static void bna_tx_enet_stop(struct bna_tx *tx); static void bna_tx_enet_stop(struct bna_tx *tx);
...@@ -3062,7 +3052,6 @@ bna_tx_sm_stopped(struct bna_tx *tx, enum bna_tx_event event) ...@@ -3062,7 +3052,6 @@ bna_tx_sm_stopped(struct bna_tx *tx, enum bna_tx_event event)
break; break;
case TX_E_PRIO_CHANGE: case TX_E_PRIO_CHANGE:
call_tx_prio_change_cbfn(tx);
break; break;
case TX_E_BW_UPDATE: case TX_E_BW_UPDATE:
...@@ -3232,7 +3221,6 @@ bna_tx_sm_prio_stop_wait(struct bna_tx *tx, enum bna_tx_event event) ...@@ -3232,7 +3221,6 @@ bna_tx_sm_prio_stop_wait(struct bna_tx *tx, enum bna_tx_event event)
case TX_E_FAIL: case TX_E_FAIL:
bfa_fsm_set_state(tx, bna_tx_sm_failed); bfa_fsm_set_state(tx, bna_tx_sm_failed);
call_tx_prio_change_cbfn(tx);
tx->tx_cleanup_cbfn(tx->bna->bnad, tx); tx->tx_cleanup_cbfn(tx->bna->bnad, tx);
break; break;
...@@ -3253,7 +3241,6 @@ bna_tx_sm_prio_stop_wait(struct bna_tx *tx, enum bna_tx_event event) ...@@ -3253,7 +3241,6 @@ bna_tx_sm_prio_stop_wait(struct bna_tx *tx, enum bna_tx_event event)
static void static void
bna_tx_sm_prio_cleanup_wait_entry(struct bna_tx *tx) bna_tx_sm_prio_cleanup_wait_entry(struct bna_tx *tx)
{ {
call_tx_prio_change_cbfn(tx);
tx->tx_cleanup_cbfn(tx->bna->bnad, tx); tx->tx_cleanup_cbfn(tx->bna->bnad, tx);
} }
......
...@@ -495,9 +495,6 @@ struct bna_tx { ...@@ -495,9 +495,6 @@ struct bna_tx {
void (*stop_cbfn)(void *arg, struct bna_tx *tx); void (*stop_cbfn)(void *arg, struct bna_tx *tx);
void *stop_cbarg; void *stop_cbarg;
/* callback for bna_tx_prio_set() */
void (*prio_change_cbfn)(struct bnad *bnad, struct bna_tx *tx);
struct bfa_msgq_cmd_entry msgq_cmd; struct bfa_msgq_cmd_entry msgq_cmd;
union { union {
struct bfi_enet_tx_cfg_req cfg_req; struct bfi_enet_tx_cfg_req cfg_req;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment