コード例 #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
ファイル: if_athp_htt_tx.c プロジェクト: erikarn/otus
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);
}