Searched refs:credit_delta (Results 1 – 5 of 5) sorted by relevance
/wlan-driver/qcacld-3.0/core/dp/htt/ |
H A D | htt_t2h.c | 465 int32_t credit_delta = 1; in htt_t2h_lp_msg_handler() local 480 qdf_atomic_add(credit_delta, in htt_t2h_lp_msg_handler() 483 credit_delta = htt_tx_credit_update(pdev); in htt_t2h_lp_msg_handler() 486 if (credit_delta) in htt_t2h_lp_msg_handler() 488 pdev->txrx_pdev, credit_delta); in htt_t2h_lp_msg_handler() 928 int credit_delta; in htt_t2h_msg_handler() local 934 credit_delta = htt_tx_credit_update(pdev); in htt_t2h_msg_handler() 937 if (credit_delta) { in htt_t2h_msg_handler() 940 credit_delta); in htt_t2h_msg_handler()
|
H A D | htt_tx.c | 466 int credit_delta; in htt_tx_credit_update() local 468 credit_delta = QDF_MIN(qdf_atomic_read( in htt_tx_credit_update() 471 if (credit_delta) { in htt_tx_credit_update() 472 qdf_atomic_add(-credit_delta, in htt_tx_credit_update() 474 qdf_atomic_add(-credit_delta, in htt_tx_credit_update() 477 return credit_delta; in htt_tx_credit_update()
|
H A D | htt_h2t.c | 87 int32_t credit_delta; in htt_t2h_adjust_bus_target_delta() local 92 credit_delta = htt_tx_credit_update(pdev); in htt_t2h_adjust_bus_target_delta() 95 if (credit_delta) in htt_t2h_adjust_bus_target_delta() 97 credit_delta); in htt_t2h_adjust_bus_target_delta()
|
/wlan-driver/qcacld-3.0/core/dp/ol/inc/ |
H A D | ol_txrx_htt_api.h | 320 void ol_tx_target_credit_init(struct ol_txrx_pdev_t *pdev, int credit_delta); 362 void ol_tx_target_credit_update(struct ol_txrx_pdev_t *pdev, int credit_delta);
|
/wlan-driver/qcacld-3.0/core/dp/txrx/ |
H A D | ol_tx_send.c | 371 void ol_tx_target_credit_init(struct ol_txrx_pdev_t *pdev, int credit_delta) in ol_tx_target_credit_init() argument 373 qdf_atomic_add(credit_delta, &pdev->orig_target_tx_credit); in ol_tx_target_credit_init() 376 void ol_tx_target_credit_update(struct ol_txrx_pdev_t *pdev, int credit_delta) in ol_tx_target_credit_update() argument 380 credit_delta, in ol_tx_target_credit_update() 382 credit_delta); in ol_tx_target_credit_update() 383 qdf_atomic_add(credit_delta, &pdev->target_tx_credit); in ol_tx_target_credit_update()
|