예제 #1
0
파일: htt_tx.c 프로젝트: 020gzh/linux
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);
}
예제 #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);
}
예제 #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);
}