Home
last modified time | relevance | path

Searched refs:check_for_ack (Results 1 – 9 of 9) sorted by relevance

/linux-3.4.99/drivers/net/ethernet/intel/igb/
De1000_mbx.c107 if (mbx->ops.check_for_ack) in igb_check_for_ack()
108 ret_val = mbx->ops.check_for_ack(hw, mbx_id); in igb_check_for_ack()
172 if (!countdown || !mbx->ops.check_for_ack) in igb_poll_for_ack()
175 while (countdown && mbx->ops.check_for_ack(hw, mbx_id)) { in igb_poll_for_ack()
435 mbx->ops.check_for_ack = igb_check_for_ack_pf; in igb_init_mbx_params_pf()
De1000_hw.h468 s32 (*check_for_ack)(struct e1000_hw *, u16); member
/linux-3.4.99/drivers/net/ethernet/intel/ixgbe/
Dixgbe_mbx.c111 if (mbx->ops.check_for_ack) in ixgbe_check_for_ack()
112 ret_val = mbx->ops.check_for_ack(hw, mbx_id); in ixgbe_check_for_ack()
173 if (!countdown || !mbx->ops.check_for_ack) in ixgbe_poll_for_ack()
176 while (countdown && mbx->ops.check_for_ack(hw, mbx_id)) { in ixgbe_poll_for_ack()
468 .check_for_ack = ixgbe_check_for_ack_pf,
Dixgbe_type.h2861 s32 (*check_for_ack)(struct ixgbe_hw *, u16); member
/linux-3.4.99/drivers/net/ethernet/intel/igbvf/
Dmbx.c67 if (!mbx->ops.check_for_ack) in e1000_poll_for_ack()
70 while (countdown && mbx->ops.check_for_ack(hw)) { in e1000_poll_for_ack()
339 mbx->ops.check_for_ack = e1000_check_for_ack_vf; in e1000_init_mbx_params_vf()
Dvf.h213 s32 (*check_for_ack)(struct e1000_hw *); member
/linux-3.4.99/drivers/net/ethernet/intel/ixgbevf/
Dmbx.c65 while (countdown && mbx->ops.check_for_ack(hw)) { in ixgbevf_poll_for_ack()
339 .check_for_ack = ixgbevf_check_for_ack_vf,
Dvf.h103 s32 (*check_for_ack)(struct ixgbe_hw *); member
Dixgbevf_main.c928 if (!hw->mbx.ops.check_for_ack(hw)) in ixgbevf_msix_mbx()