Esempio n. 1
0
static void ath10k_htt_tx_dec_pending(struct ath10k_htt *htt,
				      bool limit_mgmt_desc)
{
	spin_lock_bh(&htt->tx_lock);
	__ath10k_htt_tx_dec_pending(htt, limit_mgmt_desc);
	spin_unlock_bh(&htt->tx_lock);
}
Esempio n. 2
0
static void ath10k_htt_tx_dec_pending(struct ath10k_htt *htt)
{
	spin_lock_bh(&htt->tx_lock);
	__ath10k_htt_tx_dec_pending(htt);
	spin_unlock_bh(&htt->tx_lock);
}
Esempio n. 3
0
static void ath10k_htt_tx_dec_pending(struct ath10k_htt *htt)
{
	ATHP_HTT_TX_LOCK(htt);
	__ath10k_htt_tx_dec_pending(htt);
	ATHP_HTT_TX_UNLOCK(htt);
}