kopia lustrzana https://github.com/espressif/esp-idf
Merge branch 'bugfix/btdm_ble_delete_unused_variables' into 'master'
Remove unused 'yy' variables Closes IDFGH-5586 See merge request espressif/esp-idf!14582pull/7365/head
commit
a5a131825f
|
@ -1011,7 +1011,7 @@ void l2c_link_processs_ble_num_bufs (UINT16 num_lm_ble_bufs)
|
|||
*******************************************************************************/
|
||||
void l2c_ble_link_adjust_allocation (void)
|
||||
{
|
||||
UINT16 qq, yy = 0, qq_remainder;
|
||||
UINT16 qq, qq_remainder;
|
||||
tL2C_LCB *p_lcb;
|
||||
UINT16 hi_quota, low_quota;
|
||||
UINT16 num_lowpri_links = 0;
|
||||
|
@ -1096,8 +1096,8 @@ void l2c_ble_link_adjust_allocation (void)
|
|||
}
|
||||
}
|
||||
|
||||
L2CAP_TRACE_EVENT("l2c_ble_link_adjust_allocation LCB %d Priority: %d XmitQuota: %d",
|
||||
yy, p_lcb->acl_priority, p_lcb->link_xmit_quota);
|
||||
L2CAP_TRACE_EVENT("l2c_ble_link_adjust_allocation Priority: %d XmitQuota: %d",
|
||||
p_lcb->acl_priority, p_lcb->link_xmit_quota);
|
||||
|
||||
L2CAP_TRACE_EVENT(" SentNotAcked: %d RRUnacked: %d",
|
||||
p_lcb->sent_not_acked, l2cb.round_robin_unacked);
|
||||
|
|
|
@ -718,7 +718,7 @@ void l2c_info_timeout (tL2C_LCB *p_lcb)
|
|||
*******************************************************************************/
|
||||
void l2c_link_adjust_allocation (void)
|
||||
{
|
||||
UINT16 qq, yy = 0, qq_remainder;
|
||||
UINT16 qq, qq_remainder;
|
||||
tL2C_LCB *p_lcb;
|
||||
UINT16 hi_quota, low_quota;
|
||||
UINT16 num_lowpri_links = 0;
|
||||
|
@ -803,8 +803,8 @@ void l2c_link_adjust_allocation (void)
|
|||
}
|
||||
}
|
||||
|
||||
L2CAP_TRACE_EVENT ("l2c_link_adjust_allocation LCB %d Priority: %d XmitQuota: %d\n",
|
||||
yy, p_lcb->acl_priority, p_lcb->link_xmit_quota);
|
||||
L2CAP_TRACE_EVENT ("l2c_link_adjust_allocation Priority: %d XmitQuota: %d\n",
|
||||
p_lcb->acl_priority, p_lcb->link_xmit_quota);
|
||||
|
||||
L2CAP_TRACE_EVENT (" SentNotAcked: %d RRUnacked: %d\n",
|
||||
p_lcb->sent_not_acked, l2cb.round_robin_unacked);
|
||||
|
|
Ładowanie…
Reference in New Issue