feat(bt/bluedroid): delete unused host congest check

This commit is contained in:
zhiweijian
2025-01-09 10:31:21 +08:00
parent 7bf01c9eea
commit 0959beef72
9 changed files with 14 additions and 205 deletions
@@ -254,17 +254,6 @@ UINT16 BTU_BleAclPktSize(void)
#endif
}
#if SCAN_QUEUE_CONGEST_CHECK
bool BTU_check_queue_is_congest(void)
{
if (osi_thread_queue_wait_size(btu_thread, 0) >= BT_QUEUE_CONGEST_SIZE) {
return true;
}
return false;
}
#endif
int get_btu_work_queue_size(void)
{
return osi_thread_queue_wait_size(btu_thread, 0);